@font-face {
    font-family: "BlinkMacSystemFont";
    src: url('../fonts/blinkmacsystemfont-regular.ttf') format('truetype');
    font-style: normal;
    font-weight: 400;
}

@font-face {
    font-family: "BlinkMacSystemFont";
    src: url('../fonts/blinkmacsystemfont-bold.ttf') format('truetype');
    font-style: normal;
    font-weight: 700;
}

@font-face {
    font-family: "BlinkMacSystemFont";
    src: url('../fonts/blinkmacsystemfont-semibold.ttf') format('truetype');
    font-style: normal;
    font-weight: 600;
}

@font-face {
    font-family: "BlinkMacSystemFont";
    src: url('../fonts/blinkmacsystemfont-medium.ttf') format('truetype');
    font-style: normal;
    font-weight: 500;
}

html, body {
    font-family: "BlinkMacSystemFont", sans-serif;
    font-size: 14px;
    font-weight: 400;
}

*,
*::before,
*::after {
    font-family: inherit;
    color: inherit;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    margin: 0 auto;
    min-height: 100vh;
    padding: 10px;

    color: #252525;
    background: #7084FF;
    display: flex;
    align-items: center;
    justify-content: center;
}

.display-none {
    display: none !important;
}

a {
    transition: 0.5s ease;
}

a:not(.disabled):hover {
    transition: 0.5s ease;
}

.link-underline {
    text-decoration: underline;
}

.container {
    max-width: 400px;
    margin: auto;
    width: 100%;
    background: #fff;

    border-radius: 20px;
}

.disabled {
    cursor: default !important;
    opacity: 0.2;
    pointer-events: none;
}

.btn {
    width: 100%;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    cursor: pointer;
    transition: 0.5s ease;

    font-weight: 600;
    font-size: 18px;
    line-height: 89%;
}

.btn:hover {
    transition: 0.5s ease;
}

.btn:disabled {
    cursor: default;
}

.btn--one {
    color: #fff;
    background: #7084ff;
    padding: 20px;
}

.btn--one:not(:disabled):hover {
    background: #415af2;
}

.btn--two {
    border: 1px solid #7084ff;
    padding: 20px;
    color: #7084ff;
    background: unset;
}

.btn--two:not(:disabled):hover {

}

.btn:disabled {
    cursor: not-allowed;
}

.btn--one:disabled {
    background: #DBE0FE;
}

.fade-in {
    display: inline;
    animation: fadeIn 0.3s forwards;
}

.fade-out {
    animation: fadeOut 0.3s forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

.input {
    border: 1px solid #e7e7e9;
    border-radius: 8px;
    padding: 20px 12px;
    background: #fff;
    font-weight: 400;
    font-size: 14px;
    line-height: 114%;
    color: #000;
}

.input::placeholder {
    font-weight: 400;
    font-size: 14px;
    line-height: 114%;
    color: #939393;
}

.input:focus {
    outline: none;
}

.input--error {
    border: 1px solid #fe5c5c!important;
}

.home {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;

    padding: 100px 24px 18px 24px;

    background-image: url('../img/home-bg.svg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.home__img {
}

.home__title {
    font-weight: 500;
    font-size: 24px;
    text-align: center;
    color: #252525;
}

.home__desc {
    max-width: 302px;
    font-weight: 500;
    font-size: 14px;
    line-height: 129%;
    text-align: center;
    color: #6a7587;
}

.home__btns {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 352px;
    width: 100%;

    margin-top: 84px;
}

.home__btns .btn {
    width: 100%;
}


@media (max-width: 970px) {


}