/* Base reset for consistency */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #121212;
  color: #ffffffcc;
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
}

/* Auth container box */
.auth-container {
  max-width: 400px;
  margin: 80px auto;
  padding: 40px 30px;
  background-color: #1e1e1e;
  border: 1px solid #333;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
  text-align: center;
}

/* Headings */
.auth-container h2 {
  margin-bottom: 20px;
  font-size: 26px;
  color: #ff4d4d;
}

/* Sections inside auth-container */
.auth-container section {
  text-align: left;
  margin-top: 25px;
}

.auth-container section h3 {
  color: #ff4d4d;
  margin-bottom: 12px;
  font-size: 20px;
}

/* Form inputs */
.auth-container input[type="email"],
.auth-container input[type="password"] {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 18px;
  background-color: #2a2a2a;
  color: #fff;
  border: 1px solid #444;
  border-radius: 6px;
  font-size: 15px;
  transition: border-color 0.2s;
}

.auth-container input[type="email"]:focus,
.auth-container input[type="password"]:focus {
  outline: none;
  border-color: #ff4d4d;
}

/* Remember Me container */
.remember-me {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #aaa;
  margin-bottom: 18px;
  cursor: pointer;
  user-select: none;
}

/* Checkbox inside Remember Me */
.remember-me input[type="checkbox"] {
  transform: scale(1.2);
  cursor: pointer;
  margin-left: 10px;
}

/* Buttons */
.auth-container .button {
  display: inline-block;
  width: 100%;
  padding: 12px 16px;
  background-color: #ff4d4d;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.2s;
  margin-top: 10px;
}

.auth-container .button:hover {
  background-color: #e04343;
}

/* Special button colors */
button#googleLoginBtn {
  background-color: #4285F4;
}

button#googleLoginBtn:hover {
  background-color: #357ae8;
}

/* Continue as Guest link styling */
#guestLink {
  color: #aaa;
  text-decoration: none;
  transition: color 0.3s, text-decoration 0.3s;
  cursor: pointer;
}

#guestLink:hover {
  color: #ff4d4d;
  text-decoration: underline;
}

a.button {
  background-color: #444;
  margin-top: 25px;
  display: inline-block;
  text-align: center;
  line-height: normal;
  text-decoration: none;
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  color: white;
}

a.button:hover {
  background-color: #666;
}

/* Paragraphs and links */
.auth-container p {
  margin-top: 20px;
  font-size: 14px;
  color: #aaa;
}

.auth-container a {
  color: #ff4d4d;
  text-decoration: none;
  font-weight: 500;
}

.auth-container a:hover {
  text-decoration: underline;
}
