/* Login Page Styles */
.login-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(29, 29, 29);
  padding: 20px;
}

.login-card {
  /* background-color: rgb(40, 40, 40);
  border: 1px solid rgb(65, 65, 65);
  border-radius: 2px; */
  padding: 40px;
  max-width: 400px;
  width: 100%;
  /* box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3); */
}

.login-header {
  text-align: center;
  margin-bottom: 30px;
}

.login-logo {
  height: auto;
  width: 120px;
  max-height: 60px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.login-header h1 {
  color: rgb(242, 241, 237);
  font-size: 28px;
  margin-bottom: 8px;
  font-weight: 600;
}

.login-header p {
  color: rgb(180, 180, 180);
  font-size: 16px;
  margin-bottom: 0;
}

/* Form Styles */
.login-form {
  margin-bottom: 20px;
}

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

.form-group label {
  display: block;
  color: rgb(242, 241, 237);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
}

.form-group input {
  width: 100%;
  padding: 12px 16px;
  background-color: rgb(50, 50, 50);
  border: 1px solid rgb(65, 65, 65);
  border-radius: 2px;
  color: rgb(242, 241, 237);
  font-size: 16px;
  transition: all 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: rgb(247, 63, 13);
  box-shadow: 0 0 0 3px rgba(247, 63, 13, 0.1);
}

.form-group input::placeholder {
  color: rgb(120, 120, 120);
}

/* Form Options */
.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.checkbox-container {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  color: rgb(242, 241, 237);
  font-size: 14px;
  line-height: 1.4;
}

.checkbox-container input[type="checkbox"] {
  display: none;
}

.checkmark {
  height: 18px;
  width: 18px;
  background-color: rgb(50, 50, 50);
  border: 1px solid rgb(65, 65, 65);
  border-radius: 2px;
  margin-right: 12px;
  margin-top: 2px;
  position: relative;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.checkbox-container input[type="checkbox"]:checked + .checkmark {
  background-color: rgba(249, 237, 219, 0.1);
  border-color: rgb(249, 237, 219);
}

.checkbox-container input[type="checkbox"]:checked + .checkmark::after {
  content: "";
  position: absolute;
  display: block;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.forgot-link {
  color: rgb(249, 237, 219);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.forgot-link:hover {
  color: rgb(255, 255, 255);
  text-decoration: underline;
}

/* Login Button */
.login-btn {
  width: 100%;
  padding: 14px 20px;
  background-color: rgb(249, 237, 219);
  color: rgb(29, 29, 29);
  border: none;
  border-radius: 2px;
  font-size: 16px;
  font-weight: normal;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 25px;
}

.login-btn:hover {
  background-color: rgb(255, 255, 255);
  box-shadow: 0 4px 12px rgba(249, 237, 219, 0.1);
}

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

/* Divider */
.divider {
  text-align: center;
  margin: 25px 0;
  position: relative;
}

.divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background-color: rgb(65, 65, 65);
}

.divider span {
  background-color: rgb(40, 40, 40);
  padding: 0 15px;
  color: rgb(180, 180, 180);
  font-size: 14px;
  position: relative;
}

/* Social Login Buttons */
.social-login {
  margin-bottom: 20px;
}

.social-btn {
  width: 100%;
  padding: 12px 20px;
  border: 1px solid rgb(65, 65, 65);
  border-radius: 8px;
  background-color: rgb(50, 50, 50);
  color: rgb(242, 241, 237);
  font-size: 14px;
  font-weight: normal;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  margin-bottom: 12px;
}

.social-btn:hover {
  background-color: rgb(60, 60, 60);
  border-color: rgb(80, 80, 80);
  transform: translateY(-1px);
}

.social-btn:last-child {
  margin-bottom: 0;
}

.social-btn svg {
  flex-shrink: 0;
}

/* Login Footer */
.login-footer {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgb(65, 65, 65);
}

.login-footer p {
  color: rgb(180, 180, 180);
  font-size: 14px;
  margin: 0;
}

.login-footer a {
  color: rgb(249, 237, 219);
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.3s ease;
}

.login-footer a:hover {
  color: rgb(255, 255, 255);
  text-decoration: underline;
}

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

  .login-card {
    padding: 30px 25px;
    margin: 10px 0;
  }

  .login-header h1 {
    font-size: 24px;
  }

  .login-header p {
    font-size: 14px;
  }

  .form-options {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .forgot-link {
    align-self: flex-end;
  }
}

/* Password Requirements Styles */
.password-requirements {
  margin-bottom: 25px;
  padding: 16px;
  background-color: rgba(249, 237, 219, 0.05);
  border: 1px solid rgba(249, 237, 219, 0.2);
  border-radius: 2px;
}

.password-requirements h4 {
  color: rgb(242, 241, 237);
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 10px 0;
}

.password-requirements ul {
  margin: 0;
  padding-left: 20px;
  color: rgb(180, 180, 180);
}

.password-requirements li {
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 4px;
}

.password-requirements li:last-child {
  margin-bottom: 0;
}
