/* ===== GLOBAL ===== */
body {
    font-family: 'Segoe UI', sans-serif;
    margin: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;	
    background: linear-gradient(183deg, #b1c4d09c, #dcefc6);
}

/* ===== CONTAINER ===== */
.auth-box {
    background: white;
    width: 380px;
    padding: 30px;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    text-align: center;
}

/* ===== LOGO ===== */
.auth-box img {
    width: 100px;
    margin-bottom: 15px;
}

/* ===== TITLE ===== */
.auth-box h2 {
    color: #2196F3;
    margin-bottom: 20px;
}

/* ===== INPUT FIELDS ===== */
.auth-box input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-bottom: 1px solid #ccc;
    outline: none;
    font-size: 14px;
    transition: border-color 0.2s;
}
.auth-box input:focus {
    border-color: #2196F3;
}

/* ===== OPTIONAL TEXT LINK ===== */
.auth-box small a {
    color: #2196F3;
    font-size: 12px;
    text-decoration: none;
}
.auth-box small a:hover {
    text-decoration: underline;
}

/* ===== BUTTON ===== */
.auth-box button {
    width: 100%;
    padding: 10px;
    background: #2196F3;
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    font-size: 15px;
    cursor: pointer;
    margin-top: 15px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.2);
    transition: background 0.2s ease;
}
.auth-box button:hover {
    background: #1976D2;
}

/* ===== FOOTER LINK ===== */
.auth-box p {
    font-size: 13px;
    color: gray;
    margin-top: 15px;
}
.auth-box p a {
    color: #2196F3;
    font-weight: bold;
    text-decoration: none;
}
.auth-box p a:hover {
    text-decoration: underline;
}

/* ===== MOBILE VIEW ===== */
@media (max-width: 420px) {
    .auth-box {
        width: 90%;
        padding: 20px;
    }
}
