/* login.css */
body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  background-color: #0a0a0a;
  color: #fff;
}

.login-page {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.login-container {
  background-color: #121212;
  padding: 2.5rem 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  width: 100%;
  max-width: 400px;
  box-sizing: border-box;
}

.login-container h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 600;
  font-size: 1.8rem;
  color: #fff;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}

.form-group label {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: #ccc;
}

.form-group input {
  padding: 0.65rem 0.75rem;
  border-radius: 8px;
  border: none;
  background-color: #1e1e1e;
  color: #fff;
  font-size: 0.95rem;
  outline: none;
  transition: all 0.3s ease;
}

.form-group input:focus {
  box-shadow: 0 0 0 2px #2f80ed;
}

.password-group .label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.password-wrapper {
  position: relative;
}

.password-wrapper input {
  width: 100%;
}

.toggle-password {
  position: absolute;
  top: 50%;
  right: 0.75rem;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #888;
  cursor: pointer;
  font-size: 1rem;
  outline: none;
}

.toggle-password:hover {
  color: #fff;
}

.remember-row {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.remember-row input[type="checkbox"] {
  margin-right: 0.5rem;
  width: 16px;
  height: 16px;
}

.btn-login {
  width: 100%;
  padding: 0.75rem;
  background-color: #2f80ed;
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-login:hover {
  background-color: #1366d6;
}

.divider {
  text-align: center;
  margin: 1.5rem 0;
  color: #777;
  position: relative;
}

.divider::before,
.divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background: #555;
}

.divider::before {
  left: 0;
}

.divider::after {
  right: 0;
}

.signup-link,
.terms {
  text-align: center;
  font-size: 0.9rem;
  color: #aaa;
  margin-top: 1rem;
}

.signup-link a,
.terms a,
.forgot {
  color: #2f80ed;
  text-decoration: none;
}

.signup-link a:hover,
.terms a:hover,
.forgot:hover {
  text-decoration: underline;
}

.google-btn {
  display: block;
  width: 100%;
  padding: 0.75rem;
  text-align: center;
  background-color: #fff;
  color: #000;
  border-radius: 8px;
  margin-top: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.google-btn:hover {
  background-color: #f2f2f2;
}

@media (max-width: 480px) {
  .login-container {
    padding: 2rem 1.5rem;
  }
}
/* login.css */
body {
  background-color: #121212;
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
}

.login-page {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.login-container {
  background-color: #1e1e1e;
  padding: 40px 30px;
  border-radius: 10px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  color: #fff;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.form-group label {
  margin-bottom: 8px;
}

.form-group input {
  padding: 12px;
  border: 1px solid #333;
  border-radius: 6px;
  background-color: #121212;
  color: #fff;
}

.password-wrapper {
  position: relative;
  display: flex;
}

.password-wrapper input {
  flex: 1;
  padding-right: 40px;
}

.toggle-password {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

.btn-login {
  width: 100%;
  padding: 12px;
  background-color: #2563eb;
  border: none;
  border-radius: 6px;
  color: white;
  font-weight: bold;
  cursor: pointer;
}

.btn-login:hover {
  background-color: #1e40af;
}

.remember-row {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.remember-row input {
  margin-right: 10px;
}

.divider {
  text-align: center;
  margin: 15px 0;
  position: relative;
}

.divider::before,
.divider::after {
  content: '';
  height: 1px;
  width: 40%;
  background: #333;
  position: absolute;
  top: 50%;
}

.divider::before { left: 0; }
.divider::after { right: 0; }

.google-btn {
  display: block;
  width: 100%;
  padding: 12px;
  text-align: center;
  background-color: #fff;
  color: #000;
  border-radius: 6px;
  text-decoration: none;
  margin-bottom: 10px;
}
