#page-body {
  min-height: calc(100vh - 160px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}
@media (min-width: 768px) {
  #page-body {
    padding: 3rem 0;
  }
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

.page-form-space {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}
@media (min-width: 768px) {
  .page-form-space {
    min-height: 500px;
  }
}

.formLogin {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .formLogin {
    max-width: 450px;
  }
}

.fe-form {
  background: #ffffff;
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}
@media (min-width: 768px) {
  .fe-form {
    padding: 2.5rem 2rem;
    border-radius: 1.25rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  }
}
@media (min-width: 1024px) {
  .fe-form {
    padding: 3rem 2.5rem;
  }
}

.form-group {
  margin-bottom: 1.5rem;
}
.form-group:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .form-group {
    margin-bottom: 2rem;
  }
}

.title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #2c3e50;
  text-align: center;
  margin: 0 0 0.5rem;
  letter-spacing: -0.025em;
}
@media (min-width: 768px) {
  .title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
}
@media (min-width: 1024px) {
  .title {
    font-size: 2.25rem;
  }
}

.input {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid #e1e8ed;
  border-radius: 0.5rem;
  font-size: 1rem;
  color: #2c3e50;
  background: #ffffff;
  transition: all 0.3s ease;
  box-sizing: border-box;
}
.input::placeholder {
  color: #94a3b8;
  font-weight: 400;
}
.input:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}
.input:hover {
  border-color: #cbd5e1;
}
@media (min-width: 768px) {
  .input {
    padding: 1rem 1.25rem;
    font-size: 1.0625rem;
    border-radius: 0.625rem;
  }
}

.btn {
  display: inline-block;
  padding: 0.875rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-sizing: border-box;
  width: 100%;
}
@media (min-width: 768px) {
  .btn {
    padding: 1rem 2rem;
    font-size: 1.0625rem;
    border-radius: 0.625rem;
  }
}
.btn.btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff !important;
}
.btn.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}
.btn.btn-primary:active {
  transform: translateY(0);
}
.btn.btn-primary:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #64748b;
}
@media (min-width: 768px) {
  .checkbox {
    font-size: 0.9375rem;
    gap: 0.625rem;
  }
}

.form-check-input {
  width: 1.125rem;
  height: 1.125rem;
  border: 2px solid #d1d5db;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.form-check-input:checked {
  background: #3b82f6;
  border-color: #3b82f6;
}
.form-check-input:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}
@media (min-width: 768px) {
  .form-check-input {
    width: 1.25rem;
    height: 1.25rem;
  }
}

label {
  cursor: pointer;
  user-select: none;
  line-height: 1.4;
}

.fg-popup-error {
  background: #fee2e2;
  color: #dc2626;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  border: 1px solid #fecaca;
  display: none;
}
.fg-popup-error.show {
  display: block;
}
@media (min-width: 768px) {
  .fg-popup-error {
    padding: 0.875rem 1.25rem;
    font-size: 0.9375rem;
    border-radius: 0.625rem;
  }
}

.fe-form.loading .btn {
  opacity: 0.7;
  cursor: not-allowed;
}
.fe-form.loading .btn::after {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 1rem;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-left: 0.5rem;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.fe-form input:focus,
.fe-form button:focus {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

/*# sourceMappingURL=page-login.css.map */
