/* Login Section Styles */
.login-section {
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 160px); /* Adjust for navbar and footer */
}

.container {
  max-width: 500px;
  width: 100%;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 40px;
}

.login-card {
  text-align: center;
}

.welcome-text {
  font-size: 2rem;
  color: #2584b0;
  margin-bottom: 25px;
  font-weight: bold;
}

.sign-in-text {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 5px;
}

.get-started-text {
  font-size: 1rem;
  color: #666;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  color: #333;
}

.form-control {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.pass-field-area {
  position: relative;
}

.pass-eye {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
}

.error {
  color: red;
  display: block;
  margin-top: 5px;
  margin-bottom: 20px;
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.remember-me {
  display: flex;
  align-items: center;
}

.remember-me input {
  margin-right: 5px;
}

.forgot-password {
  color: #2584b0;
  text-decoration: none;
}

.login-button {
  width: 100%;
  padding: 12px;
  background-color: #2685b1;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.login-button:hover {
  background-color: #1a6a8a;
}

.register-link {
  margin-top: 20px;
  color: #666;
}

.register-link a {
  color: #2584b0;
  text-decoration: none;
  font-weight: bold;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .container {
    padding: 20px;
  }
} 