.auth-form{
    background-color: rgb(255, 255, 255);
}

body {
    background: #f5f5f5;
    font-family: Arial;
    text-align:center;
    padding-top:60px;}

form {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Центрирует элементы внутри формы вертикально */
    align-items: center; 
    
    background:#fff;
    padding:0px;
    border-radius:10px;
    box-shadow:0 0 10px #ccc; }

input {
    margin:10px;
    padding:10px;
    width:200px; 
    border-radius:8px;
    border:1px solid #ddd; }

button {
    padding:10px 20px;
    border:none;
    border-radius:8px;
    background:#4a90e2;
    color:#fff;
    cursor:pointer; }

@media (max-width: 1200px){
    form{
        background-color: rgb(231, 231, 231);
    }
    input{
        width: 60%;
        height: 60px;
    }
    button {
        padding:10px 20px;
        width: 60%;
        height: 60px;
        border:none;
        border-radius:8px;
        background:#4a90e2;
        color:#fff;
        cursor:pointer; }
    
    h2{
        font-size: 68px;
    }
    input{
        font-size: 36px;
    }
    button{
        font-size: 44px;
        height: 68px;
    }
    a{
        font-size: 32px;
        height: 32px;
    }
}