body{
    background-image: url("assets/images/content/2.jpg");
    background-size: cover; /* Это необязательно, но полезно, чтобы изображение покрывало весь фон */
    background-repeat: no-repeat; /* Тоже необязательно, чтобы изображение не повторялось */
    background-position: center center; /* И это тоже, чтобы изображение было по центру */
}
.logo-reg{
    display: block; 
    width: 70vh;
    height: 18vh;        
    /* Это центрирует сам блок */
    margin: 0 auto;
}
.another{
    color: gray;
    text-decoration: none;
    text-align: center; 
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}
.login-screen{
    display: flex;
    flex-direction: column;
}
.forma{
    width: 30vh;
    display: flex; /* Делаем контейнер гибким */
    flex-direction: column; /* Располагаем элементы друг под другом */
    align-items: center; /* Центрируем элементы по горизонтали */
    justify-content: center; /* Центрируем элементы по вертикали (если нужно) */
    margin-bottom: 10px;
    border-radius: 3px;
    border-color: gray;
    color: black;
    border: 0px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}
.form-button{
    width: 30vh;
    display: flex; /* Делаем контейнер гибким */
    flex-direction: column; /* Располагаем элементы друг под другом */
    align-items: center; /* Центрируем элементы по горизонтали */
    justify-content: center; /* Центрируем элементы по вертикали (если нужно) */
    margin-bottom: 10px;
    color: white;
    background-color: gray;
    border-radius: 3px;
    border: 0px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}
.form-container {
    display: flex;
    flex-direction: column;
    align-items: center; /* Центрирует input и button внутри себя */
}