.login-container {
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    flex-direction: column;
}

.bg-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    /* 🌈 Grass to sky gradient overlay */
    background: linear-gradient(to bottom right, rgba(30, 86, 49, 0.5), rgba(56, 128, 186, 0.5));
    z-index: 1;
}

.quote-box {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
    text-shadow: 1px 1px 4px #000;
    color: #f1f9f0;
    margin-bottom: 20px;
    padding: 0 15px;
}

.quote-box h1 {
    font-size: 1.8rem;
}

.form-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 400px;
    padding: 0 15px;
}

.login-form-box {
    /* 🌈 Cricket style gradient box */
    background: linear-gradient(to bottom right, rgba(230, 242, 230, 0.6), rgba(244, 249, 244, 0.6));    border: 1px solid #cce6cc;
    box-shadow: 0 4px 15px rgba(29, 99, 54, 0.8);
    border-radius: 12px;
    padding: 25px;
}

.login-form-box h2 {
    color: #226191;
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 20px;
}

.submit {
    background: linear-gradient(to right, #215934, #69865b); /* dark green to soft green */
    border: none;
    color: white;
    font-weight: bold;
    transition: background 0.3s ease;
}

/* On hover: deeper gradient shift */
.submit:hover {
    background: linear-gradient(to right, #2d6a4f, #8ab57d);
    box-shadow: 0 0 10px rgba(29, 99, 54, 0.3);
}

.company-logo {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 3;
    background: rgba(255, 255, 255, 0.7);  
    padding: 8px;
    border-radius: 8px;
}


@media (max-width: 576px) {
    .quote-box h1 {
        font-size: 1.2rem;
    }

    .quote-box p {
        font-size: 0.9rem;
    }

    .login-form-box {
        padding: 20px 15px;
    }

    .login-form-box h2 {
        font-size: 1.2rem;
    }
}
