/* -----------------------
   GLOBAL RESET
------------------------ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

body {
  background: linear-gradient(135deg, #0f4c81, #1e90ff);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* -----------------------
   AUTH CONTAINER
------------------------ */
.auth-container {
  background: #ffffff;
  width: 380px;
  padding: 30px 35px;
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  animation: fadeIn 0.6s ease;
}

.auth-container h2 {
  text-align: center;
  color: #0f4c81;
  margin-bottom: 25px;
  font-weight: 600;
}

/* -----------------------
   FORM ELEMENTS
------------------------ */
.auth-container form {
  display: flex;
  flex-direction: column;
}

.auth-container input {
  margin-bottom: 15px;
  padding: 12px;
  border: 1px solid #cfd8dc;
  border-radius: 6px;
  font-size: 14px;
  transition: 0.3s;
}

.auth-container input:focus {
  outline: none;
  border-color: #1e90ff;
  box-shadow: 0 0 5px rgba(30, 144, 255, 0.4);
}

/* -----------------------
   BUTTON
------------------------ */
.auth-container button {
  padding: 12px;
  border: none;
  border-radius: 6px;
  background: #0f4c81;
  color: white;
  font-size: 15px;
  cursor: pointer;
  margin-top: 10px;
  transition: background 0.3s ease;
}

.auth-container button:hover {
  background: #08355c;
}

/* -----------------------
   MESSAGE TEXT
------------------------ */
#msg {
  margin-top: 12px;
  font-size: 14px;
  text-align: center;
}

/* -----------------------
   LINKS
------------------------ */
.small-text {
  text-align: center;
  margin-top: 18px;
  font-size: 14px;
}

.small-text a {
  color: #1e90ff;
  text-decoration: none;
  font-weight: 500;
}

.small-text a:hover {
  text-decoration: underline;
}

/* -----------------------
   ANIMATION
------------------------ */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
