@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100&display=swap');

body {
    background: #111111;
    color: white;
    font-family: Arial, sans-serif;
}

.container {
    text-align: center;
    margin-top: 0px;
}

.btn {
    width: 320px;
    height: 70px;
    background-color: #1974D2;
    color: white;
    border-radius: 20px;
    border: none;

    display: flex;                 /* вместо inline-block */
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-decoration: none;
    cursor: pointer; 
    margin: 35px;

    transition: background-color 0.25s ease; /* ← плавность */
}

/* Заголовок */
.btn-title {
    font-size: 26px;
    font-weight: 400;
    line-height: 1.1;
}

/* Сабтитл */
.btn-subtitle {
    font-size: 14px;
    font-weight: 300;
    opacity: 0.9;
    margin-top: 2px;
}

.btn:hover {
    background: #1662B0;
}

.buttons {
    display: flex;
    justify-content: center; /* центр между кнопками */
    gap: 0px;               /* расстояние между кнопками */
    margin-top: 70px;
}

.btn-info {
    background-color: #2c2c2c;
}

.btn-back:hover {
    background-color: #232323;
}

.btn-info:hover {
    background-color: #232323;
}

.btn-back {
    background-color: #2c2c2c;
    margin-left: auto;         /* занимает всё свободное пространство слева */
    margin-right: 65px;        /* отступ от правого края */
}

.btn-back:hover {
    background-color: #232323;
}

.logo {
    display: block;        /* чтобы margin:auto работал */
    margin: 80px auto 0;  /* отступ сверху 100px, по центру горизонтально */
    width: 400px;          /* желаемая ширина */
    height: auto;          /* сохраняем пропорции */
    max-height: 400px;     /* ограничение по высоте, чтобы не растягивалась */
    object-fit: contain;   /* подгоняет содержимое внутри блока */
}
.screens {
    display: block;        /* block нужен для margin:auto */
    margin: 70px auto 0;   /* 70px сверху, auto слева/справа = по центру */
    width: 900px;          /* подстраивай под экран */
    height: auto;          /* сохраняем пропорции */
    max-height: 400px;     /* ограничение по высоте */
    object-fit: contain;   /* масштабирование без обрезки */
}

.subtitle {
    font-size: 30px;
    font-weight: 300;
}

.info-row {
    display: flex;          /* включаем flex-контейнер */
    align-items: center;    /* вертикальное выравнивание по центру */
    justify-content: flex-start; /* картинка слева, кнопка справа */
    gap: 20px;              /* расстояние между картинкой и кнопкой */
}

.info {
    display: block;
    margin: 50px;
    width: auto;
    height: 80px;
    max-height: 400px;
    object-fit: contain;
}

.info_title {
    font-family: 'Inter', sans-serif;
    font-size: 40px;
    font-weight: 600;
    margin-left: 55px;
}

.info_text {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 30px;
    margin-left: 65px;
    margin-right: 65px;
}

.bottom_text {
    font-family: 'Inter', sans-serif;
    font-weight: 200;
    font-size: 25px;
    margin-left: 65px;
    margin-right: 65px;
    align-self: center;
    text-align: center;
}

.container-privacypolicyanduseragreement {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 65px;
}

.btn-privacypolicyanduseragreement {
    background-color: #2c2c2c;
    padding: 10px 20px;
    cursor: pointer;
    text-align: center;
    width: 400px;
    height: 50px;
}

.btn-privacypolicyanduseragreement:hover {
    background-color: #232323;
}

.email {
    color: #5fafff;
}