﻿body {
    margin: 0;
    font-family: "Segoe UI", sans-serif;
    background: linear-gradient(120deg, #fff3e0, #f0fff4, #e3f2fd);
    min-height: 100vh;
}

.left-panel {
    color: #333;
    padding: 3rem;
}

.welcome-text {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, #b7015d, #ffb703, #2a9d8f, #447EEF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-box h5 {
    font-weight: 700;
    color: #b7015d;
}

.stat-caption {
    color: #555;
    font-size: 0.95rem;
}

.login-box {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.btn-chandan {
    background: #b7015d;
    border: none;
    color: white;
}

    .btn-chandan:hover {
        background: #b51734;
        color: white !important;
    }

.btn-google {
    border-radius: 12px;
    border: 1px solid #ddd;
    padding: 0.6rem;
    font-weight: 500;
}

    .btn-google:hover {
        background: #f8f9fa;
    }

.store-badge {
    height: 45px;
    margin: 0.4rem;
}

.form-group input:focus {
    border-color: #6a11cb;
    box-shadow: 0px 0px 6px rgba(106, 17, 203, 0.3);
    outline: none;
}

.form-group input {
    width: 100%;
    padding: 8px;
    border-radius: 5px;
    border: 1.5px solid #ddd;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-group {
    margin-bottom: 10px;
    position: relative;
}

.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999999;
    background-color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.spinner-border {
    width: 3rem;
    height: 3rem;
}

.error-text {
    color: red;
    font-size: 12px;
    display: block;
    margin-top: 4px;
}

input.error {
    border: 1px solid red;
}

@media (max-width: 900px) {
    body {
        flex-direction: column;
        padding: 20px;
    }

    .left-panel {
        padding: 20px;
        text-align: center;
    }

    .stats {
        justify-content: center;
    }
}
