body {
    background-color: #f0f2f5;
    font-size: 14px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.auth-container {
    width: 100%;
    max-width: 390px;
    padding: 30px 25px;
    background-color: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease-in-out;
}

.auth-container .logo {
    max-width: 130px;
    margin-bottom: 20px;
}

.auth-container h5,
.auth-container h6 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 20px;
}

.form-floating label {
    font-size: 13px;
}

.form-control,
.form-select {
    font-size: 14px;
    padding: 10px;
}

.btn-primary {
    font-size: 14px;
    padding: 10px;
    transition: background-color 0.2s ease;
}

.btn-primary:hover {
    background-color: #0056d2;
}

.divider {
    margin: 20px 0;
    font-size: 13px;
    color: #888;
    text-align: center;
    position: relative;
}

.divider::before,
.divider::after {
    content: "";
    display: inline-block;
    width: 40%;
    height: 1px;
    background-color: #ccc;
    vertical-align: middle;
    margin: 0 8px;
}

.google-btn {
    background-color: white;
    border: 1px solid #ddd;
    color: #444;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    padding: 9px 12px;
    transition: background-color 0.2s ease-in-out;
    border-radius: 6px;
}

.google-btn:hover {
    background-color: #f7f7f7;
}

.google-btn img {
    width: 20px;
    margin-right: 10px;
}

.extra-links {
    font-size: 13px;
    margin-top: 15px;
    text-align: center;
}

.extra-links a {
    text-decoration: none;
    color: #0d6efd;
}

.extra-links a:hover {
    text-decoration: underline;
}

@media (max-width: 480px) {
    .auth-container {
        padding: 25px 18px;
        max-width: 95%;
    }

    .form-control,
    .form-select {
        font-size: 13px;
    }

    .btn-primary {
        font-size: 13.5px;
    }

    .google-btn {
        font-size: 13.5px;
    }
}
