body {
    /* background-image: url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=1470&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D"); */
    /* background-image: url(""); */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
    position: relative;
    color: white;
}

/* Ensure content appears above the overlays */
body * {
    position: relative;
    z-index: 2;
}

/* Light black overlay transitioning into a darker black */
body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            /* rgba(0, 0, 0, 0.3), */
            rgba(0, 0, 0, 0.8) 100%,
            /* Lighter black at the top */
            rgba(0, 0, 0, 0.7) 60%,
            /* Transition to slightly darker black */
            rgba(0, 0, 0, 0.9) 100%
            /* Darkest black at the bottom */
        );
    z-index: 1;
}





/* General Card Styling */
.card-login {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.2) !important;
    /* Adds frosted glass effect */
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 400px;
    /* Default for mobile devices */
    padding: 2rem;
}

/* Increase card width for larger screens */
@media (min-width: 992px) {
    .card-login {
        max-width: 500px;
        /* Larger width for desktop screens */
    }
}

/* Input Styling */
.input-group-text {
    background-color: #fff;
    border: none;
}

.form-control {
    background-color: rgba(255, 255, 255, 0.8);
    color: #000;
    border-radius: 10px;
}

.form-control::placeholder {
    color: #999;
}

/* Button Styling */
.btn-success {
    background-color: #00c97e;
    border: none;
    padding: 10px 0;
    border-radius: 8px;
}

/* Social Buttons */
.btn-light {
    border: none;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 10px 15px;
    border-radius: 10px;
}

/* Link Styling */
.text-success {
    color: #00c97e !important;
    font-weight: bold;
}

/* logo START */



/* logo END  */

/* Media Query for Responsiveness */
@media (max-width: 576px) {
    .card-login {
        width: 100%;
        padding: 1rem;
    }
}