﻿

/*.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50;
    
}



.login-card {
    background: #f0f0f0;
    padding: 30px 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    width: 30%;
    min-width: 30%;*/ /* Prevents shrinking below this */
    /*transition: transform 0.3s ease, box-shadow 0.3s ease;
}*/

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Full screen height */
    padding: 20px; /* Add some breathing space */
    box-sizing: border-box;
    overflow: hidden !important;
}

.login-card {
    background: #f0f0f0;
    padding: 30px 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    width: 30%;
    min-width: 300px;
    max-width: 100%;
    box-sizing: border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

   /* .login-card:hover {
        transform: scale(1.03);
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
    }*/





   /* .login-card:hover {
        transform: scale(1.03);
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
    }
*/


    .login-card h2 {
        text-align: center;
        margin-bottom: 25px;
    }



.captcha-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .captcha-section img {
        height: 45px;
        border: 1px solid #ccc;
        border-radius: 5px;
    }

.btn-submit {
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: not-allowed;
}

    .btn-submit.enabled {
        cursor: pointer;
        background-color: #28a745;
    }

.refresh-captcha-btn {
    transition: transform 0.2s ease, background-color 0.2s ease;
}

    .refresh-captcha-btn:active {
        transform: rotate(20deg) scale(1.1);
        /* background-color: #e9ecef; /* Light gray */ */
}

/* For medium screens (tablets and below) */
@media (max-width: 992px) {
    .login-card {
        width: 90%;
    }
}

/* For small screens (mobiles) */
@media (max-width: 576px) {
    .login-card {
        width: 90%;
    }
}
