.alert-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10001; 
    justify-content: center;
    justify-items: center;
    align-items: center;
    opacity: 0;
    transition: all .1s;
}

.alert-box {
    position: relative;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 400px;
    margin: 20px auto;
    max-height: 100vh;
    overflow-y: auto;  
    transform: rotate(90);
}

.close-btn {
    position: absolute;
    top: 15px;
    left: 15px;
    cursor: pointer;
    font-size: 24px; 
    color: #666;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    text-align: right;
}
 

.submit-btn {
    width: 100%;
    padding: 12px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.submit-btn:hover {
    background: #45a049;
}

@media (max-width: 480px) {
    .alert-box {
        padding: 20px;
        width: 80%;
    }
}




 