@font-face {
    font-family: 'VKSansRegular';
    src: local('VKSansRegular'), url('font/VKSansDisplay-Regular.ttf');
}

@font-face {
    font-family: 'VKSansBold';
    src: local('VKSansBold'), url('font/VKSansDisplay-Bold.ttf');
}

.modalForm {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.modalFormContent {
    background: white;
    padding: 20px;
    border-radius: 10px;
    width: 500px;
    height: fit-content;
    text-align: center;
    position: relative;
}

.closeForm {
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
    font-size: 40px;
}