/* Account Modal Styles */
.login-logo {
  font-size: 40px;
  font-weight: bold;
  color: #FF4500;  /* Matches the SU logo color */
  text-align: center;
  margin-bottom: 15px;
}

.login-title {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 5px;
}

.login-subtitle {
  font-size: 16px;
  color: #666;
  text-align: center;
  margin-bottom: 25px;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.login-form label {
  font-weight: 500;
  color: #333;
  margin-bottom: 5px;
}
.account-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.account-modal-content {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  width: 90%;
  max-width: 500px;
  position: relative;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.close-modal {
  position: absolute;
  right: 15px;
  top: 15px;
  font-size: 24px;
  cursor: pointer;
  color: #666;
}

.account-details {
  text-align: left;
}

.account-details h2 {
  margin-bottom: 20px;
  color: #333;
}

.user-info {
  margin-bottom: 15px;
  padding: 10px;
  background-color: #f8f9fa;
  border-radius: 5px;
}

.user-info p {
  margin: 5px 0;
  color: #666;
}

.user-info strong {
  color: #333;
}

.login-section {
  padding: 20px 0;
}

.login-form .form-group {
  margin-bottom: 15px;
}

.login-form input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
}

.input-row {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 4px;
}

.password-field {
  position: relative;
  width: 100%;
}

.password-requirements {
  font-size: 12px;
  color: #666;
  margin-top: 4px;
  margin-bottom: 15px;
}

.toggle-password {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  color: #666;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}

.toggle-password:hover {
  color: #333;
}

.password-input-wrap {
  position: relative;
  width: 100%;
}

.login-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 15px 0;
}

.remember-me {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  color: #666;
}

.forgot-password {
  font-size: 14px;
  color: #FF4500;
  text-decoration: none;
}

.login-btn {
  width: 100%;
  padding: 12px;
  background-color: #FF4500;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  margin-top: 10px;
}

.login-btn:hover {
  background-color: #E63E00;
}

.login-form button:hover {
  background-color: #158c50;
}

.register-link {
  text-align: center;
  margin-top: 15px;
}

.register-link a {
  color: #1ca060;
  text-decoration: none;
}

.register-link a:hover {
  text-decoration: underline;
}

.logout-btn {
  display: inline-block;
  padding: 8px 20px;
  background-color: #dc3545;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 15px;
}

.logout-btn:hover {
  background-color: #c82333;
}

/* Hide by default */
.hidden {
  display: none;
}

/* Show when needed */
.visible {
  display: block;
}