/* ================================
AUTH PAGE BACKGROUND
================================ */

.auth-section {
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
padding: 120px 20px 60px;
background: linear-gradient(
rgba(79, 109, 58, 0.85),
rgba(79, 109, 58, 0.85)
),
url("../img/home-hero.png");
background-size: cover;
background-position: center;
}

/* ================================
AUTH CARD
================================ */

.auth-card {
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
padding: 45px 40px;
border-radius: 20px;
width: 100%;
max-width: 400px;
text-align: center;
box-shadow:
0 20px 45px rgba(0, 0, 0, 0.25),
0 10px 25px rgba(0, 0, 0, 0.15);
transition: all 0.3s ease;
}

.auth-card:hover {
transform: translateY(-4px);
}

/* ================================
TITLE + TEXT
================================ */

.auth-card h2 {
font-family: "Montserrat", sans-serif;
color: #2f3e1f;
font-size: 26px;
margin-bottom: 10px;
}

.auth-sub {
font-family: "Open Sans", sans-serif;
font-size: 14px;
color: #666;
margin-bottom: 25px;
}

/* ================================
GOOGLE BUTTON
================================ */

.google-btn {
width: 100%;
padding: 12px;
border-radius: 10px;
border: 1px solid #dadce0;
background: #fff;
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
cursor: pointer;
margin-bottom: 18px;
font-family: "Raleway", sans-serif;
font-weight: 600;
color: #444;
transition: all 0.25s ease;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.google-btn:hover {
background: #f7f7f7;
transform: translateY(-1px);
}

.google-btn img {
width: 22px;
height: 22px;
object-fit: contain;
}

/* ================================
DIVIDER
================================ */

.divider {
margin: 15px 0;
font-size: 12px;
color: #999;
}

/* ================================
INPUT FIELDS
================================ */

.auth-form input {
width: 100%;
padding: 13px;
margin-bottom: 14px;
border-radius: 8px;
border: 1px solid #ccc;
font-size: 14px;
font-family: "Open Sans", sans-serif;
outline: none;
transition: 0.3s;
}

.auth-form input:focus {
border-color: #4f6d3a;
box-shadow: 0 0 0 2px rgba(79, 109, 58, 0.2);
}

/* ================================
MAIN BUTTON
================================ */

.auth-form button {
width: 100%;
padding: 13px;
border: none;
border-radius: 10px;
background: #4f6d3a;
color: white;
font-weight: 600;
font-family: "Raleway", sans-serif;
font-size: 15px;
cursor: pointer;
margin-top: 5px;
box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
transition: all 0.3s ease;
}

.auth-form button:hover {
background: #8a9a5b;
transform: translateY(-2px);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

/* ================================
SWITCH TEXT
================================ */

.auth-switch {
margin-top: 18px;
font-family: "Open Sans", sans-serif;
font-size: 14px;
}

.auth-switch a {
color: #1b5e20;
font-weight: 600;
text-decoration: none;
}

.auth-switch a:hover {
text-decoration: underline;
}
