/* Shared Styles for Login & Signup */
body {
    font-family: 'Outfit', sans-serif;
    background: linear-gradient(160deg, #EAF3FF 0%, #ffffff 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    color: #1A202C;
}

h2 {
    font-size: 2.5rem;
    color: #2F6FD3;
    margin-bottom: 2rem;
}

input {
    width: 300px;
    padding: 1rem;
    margin: 0.6rem 0;
    border-radius: 15px;
    border: 2px solid #e2e8f0;
    font-size: 1rem;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

input:focus {
    outline: none;
    border-color: #2F6FD3;
    box-shadow: 0 0 0 4px rgba(47, 111, 211, 0.2);
}

button {
    background: linear-gradient(45deg, #2F6FD3, #5A9BFF);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 70px;
    font-weight: bold;
    font-size: 1rem;
    margin-top: 1.2rem;
    cursor: pointer;
    box-shadow: 0 18px 45px rgba(47, 111, 211, 0.4);
    transition: 0.3s ease;
}

button:hover {
    background: linear-gradient(45deg, #1A4D9A, #2F6FD3);
    transform: translateY(-5px);
    box-shadow: 0 25px 55px rgba(47, 111, 211, 0.5);
}

p {
    margin-top: 1.5rem;
    font-size: 1rem;
}

a {
    color: #2F6FD3;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s ease;
}

a:hover {
    color: #1A4D9A;
}

#goBackBtn {
  position: absolute;
  top: 20px;
  left: 20px; /* 👉 Right instead of Left */
  padding: 10px 18px;
  background-color: #4caf50;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#goHomeBtn:hover {
  background-color: #388e3c;
}

body {
  position: relative;
  font-family: sans-serif;
  padding: 40px;
}

.error {
  color: red;
  font-size: 0.9rem;
  margin-top: 4px;
  margin-bottom: 8px;
}

