body {
	overflow: hidden;
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
    height: 100vh; /* Высота экрана */
    width: 100vw;
    display: flex; /* Включаем Flexbox */
    flex-direction: column; /* Вертикальное выравнивание */
    justify-content: flex-start; /* Выравнивание по вертикали */
    align-items: center; /* Центрирование по горизонтали */
    background-color: #1553A7;
}


#cordiant_head {
    margin-top: 60px; /* Расположение шапки над гридом */
    max-width: 700px;
    min-width: 200px;
    text-align: center;
}


h1{
color: #FCFEFF;
}

#login-form{
    z-index: 100;
    position: relative;
    top: calc(100px + 10vh);
}

#codeword{
    height: calc(30px + 1vh);
    width: calc(100px + 10vw);
    border-radius: 15px;
    margin: 10px;
    font-size: calc(12px + 1rem);
    text-align: center;
}

#send_button{
    margin: 10px;
    border-radius: 5px;
    width: calc(55px + 10vw);
    height: calc(25px + 1vh);
    color: #FCFEFF;
    background-color: #00BE9E;
    font-size: calc(12px + 0.5rem);
}

    #login_caption{
        color: #FCFEFF;
    font-size: calc(12px + 1vh);
    }

#login_head{
    position: relative;
    top: calc(50px + 2vh);
}
