﻿#restricted-login-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.7);
}
.rl-modal-content {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    max-width: 400px;
    margin: 10% auto;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
.rl-logo {
    max-width: 200px;
    margin-bottom: 15px;
}
.rl-modal-content input {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border: 1px solid #ddd;
    border-radius: 6px;
}
.rl-modal-content button {
    width: 100%;
    padding: 10px;
    background: #00938b;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}
.rl-modal-content button:hover {
    background: #00938b;
}
.rl-error {
    color: red;
    margin-top: 10px;
    display: none;
}
span.close{
float:right;
padding:20px;
 cursor: pointer;
}
.rl-modal-content h3 {color: #00938b;}
.links{padding:5px 0;}
