body{
    margin: 0;
    padding: 0;
    background-color: #5298D9;
    overflow-x: hidden;
}
*{
  font-family: 'Raleway', times ,sans-serif;
}

.form{
    line-height: 1.5;
    width: 360px;
    
    border-radius: 24px;
    background-color: #F4E3B1;
    
    
    display: block;
    margin: 100px auto;
    padding: 10px 20px;
    
    box-shadow: 0 0 30px #14325C;
}
h1{
    font-size: 36px;
    display: block;
    text-align: center;
    width: 100%;
    margin: 40px  auto 10px;
    color: #14325C;
}
.subtitle{
    font-size: 18px;
    display: block;
    text-align: center;
    width: 100%;
    margin: 0  auto;
    color: #14325C;
}
.txt-field{
    display: block;
    width: 300px;
    height: 43px;
    margin: 30px  auto;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    padding: 8px 16px;
    background-color: #eaeaea;

}
.txt-field:hover{
    transition: 0.2s ease-in;
    box-shadow: 0 0 10px #14325C;
}

.txt-field:focus{
    transition: 0.2s ease-in;
    outline: none;
    border: none;
    background-color: white;
    box-shadow: 0 0 3px #14325C;
}
.checkbox-dvdv{
    display: block;
    margin:0 auto 1vw;
    width: 70%;
    font-size: 18px; 
}
.checkbox-dvdv input{
    width: 18px;
    height: 18px;
}



.submit_btn {
    display: block;
    margin: 0 auto 20px;
    width: 110px;
    height: 40px;
    border: none;
    border-radius: 8px;
    text-align: center;
    font-size: 18px;
    background-color: #14325C;
    color: #eaeaea;
}
.submit-btn-login {
    display: block;
    margin: 0 auto 20px;
    width: 140px;
    height: 40px;
    border: none;
    border-radius: 8px;
    text-align: center;
    font-size: 18px;
    background-color: #14325C;
    color: #eaeaea;
}
.submit_btn:hover{
    transition: 0.1s ease-in;
    transform: scale(1.05);
}
.dunno {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}
.dunno_links{
    font-size: 18px;
    text-decoration: none;
    color: #14325C;
}
@media only screen and (max-width: 1000px) {
    .form{
        line-height: 1.5;
        width: clamp(0px,90vw,720px);



        margin: clamp(0px,20vh,150px) auto;
        padding: clamp(0px,5vw,20px) clamp(0px,2vw,20px) clamp(0px,10vw,40px);
    }
    h1{
        font-size: clamp(0px,10vw,64px);
        margin: 4vw  auto 2vw;
    }
    .subtitle{
        font-size: clamp(0px,6vw,48px);
        width: 100%;
    }
    .txt-field{
        width: clamp(0px,90%,600px);
        height: clamp(0px,10vw,86px);
        font-size: clamp(0px,6vw,36px);
        padding: clamp(0px,2vw,8px) clamp(0px,4vw,32px);
        background-color: #eaeaea;

    }
    
    .checkbox-dvdv{
        display: block;
        margin:0 auto 3vw;
        width: 90%;
        font-size: clamp(0px,4vw,26px); 
    }
    .checkbox-dvdv input{
        width: 24px;
        height:24px;
    }
    
    .submit_btn {
        width: clamp(0px,35vw,220px);
        height: clamp(0px,10vw,80px);
        font-size: clamp(0px,6vw,36px);
    }
    .dunno_links{
        font-size: clamp(0px,4vw,40px);
    }
}