/* Добавьте этот новый класс в ваш CSS файл */
.main-title {
    position: absolute;
    top: 40%; /* Сдвигает элемент на 40% вниз от верхнего края */
    left: 60%; /* Сдвигает элемент на 60% вправо от левого края */
    transform: translate(-50%, -50%); /* Центрирует элемент относительно самого себя */
    font-size: 5rem; /* Делает шрифт большим. Можно использовать vh/vw для адаптивности */
    white-space: nowrap; /* Запрещает перенос текста */
    color: white; /* Цвет текста */
    text-shadow: 3px 3px 7px rgba(0, 0, 0, 0.3); /* Добавляет тень для читаемости */
}

/* Обновлённый класс fon, чтобы надпись была сдвинута правее */
.fon {
    position: relative;
    height: auto;
    min-height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
}

/* Остальные стили из вашего кода, без изменений */
body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: "Poppins", serif;
    color: white;
    background-image: url('../image/fon1.jpg');
    background-size: cover;
    background-position: center;
}

/* Изменения в классе .container */
.container {
    position: fixed;
    width: 100%;
    height: 100vh;
    max-width: 400px;
    top: 0;
    left: 0;
    z-index: 1;
    padding: 20px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1);
    background: rgba(15, 15, 15, 0.9);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-right: 2px solid rgba(255, 255, 255, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Оставляем, чтобы элементы были ближе к верху */
    padding-top: 30vh; /* Увеличили значение, чтобы опустить элементы ещё ниже */
}

.form-floating {
    position: relative;
    width: 100%;
    height: 50px;
    margin: 30px 0;
}

.form-floating input {
    width: 100%;
    height: 100%;
    background: transparent;
    border: 3px solid rgba(255, 255, 255, 0.15);
    outline: none;
    border-radius: 25px;
}

.form-floating input:focus {
    border: 2px solid rgba(255, 255, 255, 0.8);
    background-color: transparent !important;
    outline: none;
    transition: 0.3s ease-in-out;
    /* Добавленная строка для удаления синей обводки */
    box-shadow: none !important;
}

.form-floating input::after {
    background-color: transparent !important;
    box-shadow: none !important;
}

.form-floating input:focus,
.form-floating input:not(:placeholder-shown) {
    color: white !important;
}

.form-floating input:focus~label,
.form-floating input:not(:placeholder-shown)~label {
    background-color: transparent !important;
    color: white !important;
}

.form-floating label::after {
    background-color: transparent !important;
    box-shadow: none !important;
}

.form-check {
    display: flex;
    justify-content: space-between;
}

.forgot a {
    color: white;
    text-decoration: none;
}

.forgot a:hover {
    text-decoration: underline;
}

.form-check-input:checked {
    background-color: rgba(78, 136, 198, 0.8);
    border-color: rgba(45, 94, 145, 0.8);
}

.btn.btn.btn-secondary {
    width: 100%;
    height: 40px;
    margin-top: 15px;
    border-radius: 50px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
    background-color: rgba(40, 40, 40, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.btn.btn.btn-secondary:hover {
    background-color: rgba(60, 60, 60, 0.9);
}

.logo1 {
    position: absolute;
    bottom: 2%;
}

#logoimg1 {
    height: 100px;
    width: 400px;
    display: block;
    margin: 0 auto;
    cursor: default;
}