/* Стиль модального окна */
#loginModalSSO.modal {
    display: none; /* Скрыть модальное окно по умолчанию */
    position: fixed; /* Оставаться на месте при прокрутке */
    z-index: 1; /* Сидеть поверх */
    left: 0;
    top: 0;
    width: 100%; /* Полная ширина */
    height: 100%; /* Полная высота */
    overflow: auto; /* Включить прокрутку, если необходимо */
    background-color: rgb(0,0,0); /* Цвет фона */
    background-color: rgba(0,0,0,0.4); /* Цвет фона с прозрачностью */
    right: 0;
    bottom: 0;
    z-index: 999;
    align-items: center;
    justify-content: center;
}

/* Стиль содержимого модального окна */
#loginModalSSO .modal-content {
    background-color: #fefefe;
    /* 15% сверху и по центру */
    padding: 20px;
    border: 1px solid #888;
    width: 100%; /* Можно настроить ширину */
    max-width: 500px;
    position: relative;
    border-radius: 5px;
    margin: 0 10px;
}

/* Стиль кнопки закрыть (x) */
#loginModalSSO .close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    right: 20px;
    top: 10px;
}

#loginModalSSO .close:hover,
#loginModalSSO .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

#loginModalSSO .modal-content h2 {
    text-align: center;
    font-weight: 500;
}

#loginModalSSO .modal-content .form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

#loginModalSSO .modal-content button {
    display: block;
    width: 100%;
    background: #01a5d1;
    color: #fff;
    text-transform: uppercase;
    border-radius: 5px;
    transition: 0.2s;
}

#loginModalSSO .modal-content button:hover {
    background: #0087ab;
}

#loginModalSSO form {
    margin: 0;
}

#loginModalSSO .modal-content .form-group label {
    font-weight: 500;
    margin-bottom: 5px;
}

#loginLinkAzure {
    color: #fff;
    background: #01a5d1;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 3px;
    display: inline-flex;
    align-items: center;
    transition: 0.2s;
    font-weight: bold;
}

#loginLinkAzure svg {
    margin-right: 10px;
}

#loginLinkAzure:hover {
    background: #0087ab;
}
