body {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    background-color: #011355;
    overflow: hidden;
    position: relative;
    color: #333;
}

.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #011355;
    overflow: hidden;
    cursor: pointer;
}

.login-container {
    text-align: center;
    background: #fff;
    border-radius: 8px;
    z-index: 1;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 40px;
    width: 100%;
    max-width: 300px;
    position: absolute; 
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); 
}


.login-container img {
    width: 190px;
    margin-bottom: 20px;
}

.login-container h1 {
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 700;
    color: #011355;
}   

.login-container input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    outline: none;
}

.login-container input::placeholder {
    color: #999;
}

.login-container button {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    font-weight: 500;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-bottom: 10px;
    transition: background-color 0.3s;
}

.login-btn {
    background-color: #011355;
    color: #fff;
}

.login-btn:hover {
    background-color: #02267d;
}

.access-btn {
    background-color: #fe751a;
    color: #fff;
}

.access-btn:hover {
    background-color: #e66514;
}

.login-container input,
.login-container button {
    box-sizing: border-box; 
    width: 100%; 
}


.footer {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #fe751a;
    font-weight: 500 ;
}

.footer-text {
    margin-right: 10px;
}

.footer-logo {
    width: 50px;
    height: 50px;
}


.halo {
    position: absolute;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 80%);
    pointer-events: none;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    transition: transform 0.1s ease-out;
}

.ripple {
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgba(254, 117, 26, 0.6);
    border-radius: 50%;
    pointer-events: none;
    animation: rippleEffect 0.8s ease-out;
    z-index: 0;
}

@keyframes rippleEffect {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(100);
        opacity: 0;
    }
}


.modal {
    display: none; 
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
}


.modal-content {
    background-color: white;
    padding: 30px;
    width: 500px;
    border-radius: 15px;
    text-align: center;
    color: #051351;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.modal-content h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 24px;
    cursor: pointer;
}

.btn-modal-request {
    background-color: #fe751a; 
    color: white;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 13px;
    border: none;
    cursor: pointer;
    margin-top: 15px;
    transition: 0.3s;
}

.btn-modal-request:hover {
    background-color: #e67e00; 
}
