.modal-container {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 50;
    transition: 0.3s;
}

.modal-background {
    background: rgba(6, 6, 12, 0.79);
    backdrop-filter: blur(2.65px);
}

.modal {
    transition: 0.3s;
    position: relative;
    border-radius: 3px;
    background: linear-gradient(6deg, rgba(15, 15, 49, 0.90) 58.78%, rgba(30, 30, 83, 0.90) 106.06%);
    backdrop-filter: blur(10.2px);
    width: 90%;
}

.modal-image {
    position: absolute;
    pointer-events: none;
    top: 12px;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    max-width: 379px;
    width: 90%;
    z-index: -1;
}

.modal-image-background {
    position: absolute;
    pointer-events: none;
    top: 0;
    right: 0;
}

.modal[data-modal="signin"] {
    max-width: 586px;
    min-height: 381px;
    padding: 42px 75px;
}

.modal-header {
    position: absolute;
    width: 100%;
    top: 0;
    height: 33px;
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 6px;
    padding-right: 10px;
}

.modal-close {
    position: absolute;
    top: 29px;
    right: 21px;
    background: none;
    width: 24px;
    height: 24px;
    padding: 0;
}

.modal-title {
    color: #FFF;
    font-size: 16px;
    font-weight: 700;
}

.modal-text {
    margin-top: 56px;
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
}

.modal-signin {
    margin-top: 55px;
    width: 100%;
    height: 60px;
    border-radius: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 13px;
}

.modal-signin img {
    width: 24px;
}

.modal-signin p {
    color: #FFF;
    font-size: 14px;
    font-weight: 700;
}

@media screen and (max-width: 500px) {
    .modal[data-modal="signin"] {
        padding: 30px 30px;
    }
}