/* E-Complain Login Page Styling */

body.login-page {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background: linear-gradient(180deg, #f5f7fb 0%, #eef2f7 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
}

.login-container {
  width: 100%;
  max-width: 420px;
  padding: 20px;
}

.login-card {
  background: rgba(255, 255, 255, 0.97);
  border-radius: 14px;
  padding: 2.4rem 2rem;
  box-shadow: 0 12px 32px rgba(20, 30, 50, 0.1);
}

.login-header {
  text-align: center;
  margin-bottom: 2rem;
}

.login-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.login-header h1 {
  margin: 0;
  font-size: 1.6rem;
  color: #0b2545;
  font-weight: 700;
  letter-spacing: 1px;
}

.login-subtitle {
  margin: 6px 0 0;
  color: #41566a;
  font-size: 0.9rem;
  font-weight: 500;
}

.login-form {
  margin-top: 1.6rem;
}

.login-title {
  font-size: 1.2rem;
  color: #0b2545;
  margin: 0 0 8px;
  font-weight: 700;
}

.login-desc {
  color: #2b4866;
  font-size: 0.9rem;
  margin: 0 0 1.4rem;
}

.form-group {
  position: relative;
  margin-bottom: 1.2rem;
}

.login-input {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #d4dde6;
  border-radius: 8px;
  font-size: 0.95rem;
  color: #0b2545;
  background: #f9fbfd;
  transition: border-color .2s, box-shadow .2s;
  box-sizing: border-box;
}

.login-input:focus {
  outline: none;
  border-color: #0b66cc;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(11, 102, 204, 0.08);
}

.login-input::placeholder {
  color: #8a97a8;
}

.field-icon {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  cursor: pointer;
  user-select: none;
  color: #41566a;
  font-size: 1rem;
  transition: color .2s;
}

.field-icon:hover {
  color: #0b66cc;
}

.btn-login {
  width: 100%;
  padding: 0.9rem 1.4rem;
  background: #0b66cc;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .2s ease;
  box-shadow: 0 6px 18px rgba(11, 102, 204, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-login:hover {
  background: #0a5bb3;
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(11, 102, 204, 0.22);
}

.btn-login:active {
  transform: translateY(-1px);
}

.login-footer {
  text-align: center;
  margin-top: 1.6rem;
  font-size: 0.85rem;
  color: #8a97a8;
}

/* Responsive mobile */
@media (max-width: 480px) {
  .login-container {
    padding: 12px;
  }

  .login-card {
    padding: 1.6rem 1.2rem;
  }

  .login-header h1 {
    font-size: 1.3rem;
  }

  .login-logo {
    width: 60px;
    height: 60px;
  }

  .login-subtitle {
    font-size: 0.85rem;
  }

  .btn-login {
    padding: 0.8rem 1.2rem;
    font-size: 0.95rem;
    letter-spacing: 1.6px;
  }
}
