/* Login Form */
.gpt-login-container {
  max-width: 450px;
  margin: 80px auto;
  padding: 40px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 10px 15px rgba(0, 0, 0, 0.1);
  border: 2px solid #e5e7eb;
}


#site-header {
  display:none !important;
}

#site-footer {
  display:none !important;
}

.page-header  {
  display:none !important;
}

.gpt-login-logo {
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 2px solid #e5e7eb;
}

.gpt-login-logo img {
  max-width: 250px;
  max-height: 120px;
  width: auto;
  height: auto;
  display: inline-block;
  object-fit: contain;
}

.gpt-login-container h2 {
  margin: 0 0 32px 0;
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
}

.gpt-login-form p {
  margin-bottom: 24px;
}

.gpt-login-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #374151;
  font-size: 14px;
}

.gpt-login-form input[type="text"],
.gpt-login-form input[type="password"] {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 15px;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.gpt-login-form input:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.gpt-login-form button[type="submit"],
.gpt-login-form .button-primary,
.gpt-login-form .button {
  width: 100% !important;
  justify-content: center;
  color: white !important;
  border: none !important;
  padding: 14px 24px !important;
  font-size: 16px !important;
  box-shadow: 0 4px 6px rgba(102, 126, 234, 0.25) !important;
  cursor: pointer;
  transition: all 0.2s ease;
  text-shadow: none !important;
  font-weight: 600;
  border-radius: 8px;
}

.gpt-login-form button[type="submit"]:hover,
.gpt-login-form .button-primary:hover,
.gpt-login-form .button:hover {
  box-shadow: 0 6px 12px rgba(102, 126, 234, 0.35) !important;
  transform: translateY(-1px);
  filter: brightness(0.95);
}

.gpt-login-error {
  padding: 14px 16px;
  background: #fee2e2;
  color: #991b1b;
  border: 2px solid #fecaca;
  border-radius: 8px;
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 500;
}

.gpt-login-success {
  padding: 14px 16px;
  background: #d1fae5;
  color: #065f46;
  border: 2px solid #6ee7b7;
  border-radius: 8px;
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 500;
}

.gpt-login-success a {
  color: #047857;
  text-decoration: underline;
  font-weight: 600;
}

.gpt-login-success a:hover {
  color: #065f46;
}

.gpt-remember-me {
  margin-bottom: 16px !important;
}

.gpt-remember-me label {
  display: flex !important;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-weight: 500 !important;
}

.gpt-remember-me input[type="checkbox"] {
  width: auto !important;
  margin: 0 !important;
  cursor: pointer;
}

.gpt-forgot-password {
  text-align: center;
  margin-top: 16px !important;
}

.gpt-forgot-password a {
  color: var(--gpt-primary-color, #667eea);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.gpt-forgot-password a:hover {
  color: var(--gpt-secondary-color, #764ba2);
  text-decoration: underline;
}

.gpt-reset-password-header {
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 2px solid #e5e7eb;
}

.gpt-reset-password-header h2 {
  margin: 0 0 12px 0;
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
}

.gpt-reset-password-header p {
  margin: 0;
  font-size: 15px;
  color: #6b7280;
  line-height: 1.6;
}
