body {
    margin: 0;
    font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.page {
    min-width: 320px;
    min-height: 700px;
    background-color: #F9FAFE;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.page__bg-upper-left {
    position: absolute;
    top: 0;
    left: 0;
}

.page__bg-upper-rigth {
    position: absolute;
    top: 0;
    right: 0;
}

.page__bg-lower-rigth {
    position: absolute;
    right: 0;
    bottom: 0;
}

.card {
    background-color: white;
    border: 1px solid #E6EAF8;
    border-radius: 16px;
    width: 410px;
    height: 540px;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.card__title {
    font-weight: 700;
    font-size: 24px;
    line-height: 29px;
    color: #1C1C1E;
    margin: 16px 0 0;
    cursor: default;
}

.card__working-mode {
    color: #FE5000;
    font-weight: 600;
    font-size: 18px;
    line-height: 21px;
    margin: 80px 0 0;
    cursor: default;
}

.card__phone {
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0.44px;
    color: #1C1C1E;
    margin: 24px 0 0;
    text-decoration: none;
}

.card__email {
    text-decoration: none;
    margin: 24px 0 0;
    color: #002855;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0.44px;
}

@media screen and (max-width: 700px) {
    .card {
        width: 330px;
        height: 700px;
    }

    .page__bg-upper-left,
    .page__bg-upper-rigth {
        transform: translateY(-80px);
    }
    
    .page__bg-lower-rigth {
        transform: translateY(80px);
    }
}