/* Custom Login Page styles */
body.page-template-page-login-integrated {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  display: flex;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.login-container {
  background-color: #ffffff;
  border-radius: 1rem;
  overflow: hidden;
  width: 100%;
  max-width: 28rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.login-container:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.social-btn { transition: all 0.3s ease; }
.social-btn:hover { transform: translateY(-2px); }
.animate-float { animation: float 6s ease-in-out infinite; }
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}
.form-field-wrapper {
  position: relative;
  margin-bottom: 1.5rem;
}
.form-field-wrapper input {
  width: 100%;
  max-width: none;
}
.form-field-wrapper label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #4b5563;
  margin-bottom: 0.5rem;
}
.input-field {
  width: 100%;
  padding: 0.75rem 1rem;
  padding-right: 2.5rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  appearance: none;
}
.input-field:focus {
  outline: none;
  border-color: #2F8A9C;
  box-shadow: 0 0 0 2px rgba(47, 138, 156, 0.5);
}
.input-icon {
  position: absolute;
  right: 0.75rem;
  top: calc(0.75rem + 1px);
  color: #9ca3af;
  pointer-events: none;
}
.remember-me-wrapper {
  display: flex;
  align-items: center;
}
.remember-me-wrapper input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  border-radius: 0.25rem;
  border-color: #d1d5db;
  color: #005968;
  transition: all 0.3s ease;
}
.remember-me-wrapper input[type="checkbox"]:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(47, 138, 156, 0.5);
}
.remember-me-wrapper label {
  margin-left: 0.5rem;
  font-size: 0.875rem;
  color: #4b5563;
}
.link-primary {
  font-size: 0.875rem;
  color: #005968;
  text-decoration: none;
  transition: color 0.3s ease;
}
.link-primary:hover {
  color: #2F8A9C;
}
.btn-submit {
  width: 100%;
  padding: 0.75rem 1rem;
  color: #ffffff;
  font-weight: 500;
  border-radius: 0.5rem;
  background: linear-gradient(135deg, #005968 0%, #2F8A9C 100%);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  margin-top: 1.5rem;
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(47, 138, 156, 0.3);
}
.message-box {
  padding: 0.75rem 1rem;
  margin-bottom: 1.5rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
}
.message-box i { margin-right: 0.5rem; }
.message-error {
  background-color: #fee2e2;
  color: #dc2626;
  border: 1px solid #fca5a5;
}
.message-success {
  background-color: #dcfce7;
  color: #16a34a;
  border: 1px solid #86efac;
}
.reset-form-title {
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1rem;
  color: #1f2937;
}
.reset-form-text {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #4b5563;
  font-size: 0.875rem;
}
