.opsgeniewss-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh; /* Full screen height for centering */
    text-align: center;
}

.opsgeniewss-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
}

.opsgeniewss-icon {
    max-width: 50px;
    height: auto;
    margin-top: 10px;
    align-self: center; /* Ensure centering */
}

.opsgeniewss-button {
    background-color: #215dc4;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.opsgeniewss-button:hover {
    background-color: black;
}

.opsgeniewss-logged-in-window {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    max-width: 300px;
}

.opsgeniewss-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease; /* Fade animation */
}

.opsgeniewss-modal.show {
    opacity: 1;
}

.opsgeniewss-modal-content {
    background: white;
    margin: 15% auto;
    padding: 20px;
    max-width: 400px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.opsgeniewss-close {
    float: right;
    cursor: pointer;
    font-size: 20px;
}

#opsgeniewss-login-form label {
    display: block;
    margin-bottom: 5px;
}

#opsgeniewss-login-form input[type="text"], 
#opsgeniewss-login-form input[type="password"] {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

#opsgeniewss-login-form button {
    width: 100%;
}