/* Основни стилове */
@font-face {
    font-family: 'TinosBold';
    src: url('zabasefont_Tinos Bold.ttf') format('truetype');
}

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: TinosBold, sans-serif;
    overflow: hidden;
}

.logo {
    width: 200px;
    top: 10px; /* Поставя логото 20px над вътрешния контейнер */
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.outer-container {
    width: 100%;
    height: 100%;
    background-image: url('backgroundpage.webp'); /* Заменете с вашата снимка */
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.inner-container {
    background-image: url('images/game_files/17game4.svg'); /* Заменете с вашата снимка */
    background-size: 100% 100%;
    background-repeat: no-repeat; /* Забранява повторението на изображението */
    background-position: center;
    padding: 10px;
    height: 250px;
    width: 300px;
    text-align: center;
}

h1 {
    font-size: 28px;
    color: #fff;
    margin-bottom: 10px;
    margin-top: 20px;
}

/* Формата за вход */
.input-field {
    position: relative;
    margin-bottom: 10px;
    width: 250px;
    font-family: 'TinosBold';
    src: url('zabasefont_Tinos Bold.ttf') format('truetype');
    font-size: 16px;
    margin-left: 15px;
}

.input-field label {
    position: relative;
    display: block;
    color: #fff;
    margin-bottom: 0px;
    font-family: 'TinosBold';
    src: url('zabasefont_Tinos Bold.ttf') format('truetype');
    font-size: 16px;
}

.input-field input {
    position: relative;
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    margin-bottom: 5px;
    font-family: 'TinosBold';
    src: url('zabasefont_Tinos Bold.ttf') format('truetype');
    font-size: 16px;
}

/* Стилове за бутоните */
button {
    width: 100%;
    border: none;
    cursor: pointer;
    font-size: 18px;
    text-align: center;
    color: #fff;
    background-color: transparent;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    font-family: 'TinosBold';
    src: url('zabasefont_Tinos Bold.ttf') format('truetype');
}

.icon {
    position: relative; /* Абсолютно позициониране на текста вътре в бутона */
    width: 70px; /* Ширина на иконката */
    height: 30px; /* Височина на иконката */
    background-image: url('images/game_files/0atplay.svg'); /* Снимка за фон */
    background-size: contain; /* Прави иконката да се побере в контейнера */
    background-repeat: no-repeat;
    background-position: center; /* Центрира иконката в контейнера */
    top: 4px; /* Разстояние между иконката и текста */
    border: none;
}

.submit {
    background-image: url('images/game_files/10buttonB0.svg'); /* Заменете с вашата снимка за фон на бутона */
    margin-top: -3px;
    font-family: 'TinosBold';
    src: url('zabasefont_Tinos Bold.ttf') format('truetype');
    width: 140px;
    height: 50px;
}

/* Смяна на фона при ховър */
.submit:hover {
    background: url('images/game_files/10buttonB1.svg') center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Добавяне на отстояние между външния и вътрешния контейнер */
.outer-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.toggle-password {
    position: absolute;
    top: 8px;
    right: -16px;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 30px;

}

.password-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    object-position: left;
}

@media (max-height: 400px) { /* За малки екрани (ширина до 768px) */
    .outer-container {
        flex-direction: row; /* Подрежда елементите хоризонтално */
        align-items: center; /* Подравнява елементите в началото на контейнера */
        justify-content: space-around; /* Равно разстояние между елементите и по краищата */
    }
}

@media (max-height: 400px) { /* За малки екрани (ширина до 768px) */
    .logo {
        width: 120px;
        top: 0px;
    }
}

@media (max-height: 400px) { /* За малки екрани (ширина до 768px) */
    .register-button-container {
        margin-top: 0px;
    }
}