@import url('base.css');

/* signup.html */
.auth-container {
  max-width: 450px;
  margin: 80px auto;
  padding: 40px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.auth-container h1 {
  text-align: center;
  margin-bottom: 10px;
  color: #fff;
}

.auth-container p {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 30px;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-medium);
  font-weight: 500;
  font-family: 'Outfit', sans-serif;
}

.form-group input {
  width: 100%;
  padding: 12px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-size: 16px;
  color: white;
  transition: all 0.3s;
  box-sizing: border-box;
  font-family: inherit;
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 15px rgba(123, 97, 255, 0.2);
}

.btn-submit {
  width: 100%;
  padding: 14px;
  background: #fff;
  color: #000;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(255, 255, 255, 0.15);
  background: #f1f5f9;
}

.error-message {
  background: rgba(244, 63, 94, 0.1);
  color: var(--danger-color);
  border: 1px solid rgba(244, 63, 94, 0.2);
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 20px;
  display: none;
}

.auth-links {
  text-align: center;
  margin-top: 20px;
}

.auth-links a {
  color: var(--primary-color);
  text-decoration: none;
}

.auth-links a:hover {
  text-shadow: 0 0 10px rgba(123, 97, 255, 0.4);
}

.btn-google {
  width: 100%;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
}

.btn-google:hover {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 5px 20px rgba(255, 255, 255, 0.05);
}

.btn-google svg {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 25px 0 10px 0;
  color: var(--text-light);
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.divider span {
  margin: 0 15px;
  font-size: 14px;
}

@media (max-width: 480px) {
  .auth-container {
    padding: 24px;
    margin: 40px 15px;
    border-radius: 12px;
  }

  .auth-container h1 {
    font-size: 1.8rem;
  }

  .g_id_signin {
    transform: scale(0.9);
    transform-origin: center;
  }
}
