.main-content {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.full-page-container {
  justify-content: center;
  align-items: center;
  display: flex;
  height: 100vh;
}

.form-card {
  border-radius: 12px;
  background: white;
  max-width: 400px;
  padding: 40px;
  width: 100%;
}

.form-label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  color: #555;
  font-size: 14px;
}

.form-input {
  border: 2px solid #e1e5e9;
  transition: all 0.2s ease;
  background-color: #fff;
  border-radius: 6px;
  padding: 12px 16px;
  font-size: 16px;
  width: 100%;
}

.form-input:focus {
  box-shadow: 0 0 0 3px hsla(229, 76%, 66%, 0.1);
  border-color: #1a55e3;
  outline: none;
}

.form-input::placeholder {
  color: #9ca3af;
}

.form-group {
  margin-bottom: 10px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.btn-primary {
  background: #1a55e3;
  margin-top: 10px;
  color: white;
  width: 100%;
}

.btn-primary:hover {
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn-primary:active {
  transform: translateY(0);
}

.flex-end {
  display: flex;
  justify-content: flex-end;
}

.link {
  text-decoration: none;
  font-size: 14px;
  color: #1a55e3;
}
