﻿﻿.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
}

.modal-content {
    position: relative;
    background-color: #ffffff;
    margin: 12% auto;
    padding: 30px 25px;
    border: 3px solid #7BA7D1;
    border-radius: 8px;
    width: 400px;
    max-width: 90%;
    min-height: 180px;
    text-align: center;
    font-family: inherit;
}

    .modal-content p {
        margin: 0 0 25px 0;
        font-size: 15px;
        line-height: 1.5;
        color: #333;
        padding: 0 10px;
    }

a {
    cursor: pointer;
}

.close {
    color: #999;
    position: absolute;
    top: 7px;
    right: 12px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

    .close:hover,
    .close:focus {
        color: #333;
    }

.ssoButton {
    background-color: #B8834A;
    color: #ffffff;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.2s ease;
    text-decoration: none;
    display: inline-block;
    margin: 5px 0;
}

    .ssoButton:hover {
        background-color: #A0743E;
    }

    .ssoButton:active {
        background-color: #8D5F32;
    }
