*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: xplore;
    src: url(/fonts/roboto-v18-greek-ext_cyrillic-ext_cyrillic_greek_latin-ext_latin-regular.woff2);
}

body{
    background-color: #4d4d4d;
    font-family: xplore;
}

.container{
    display: flex;
    justify-content: center;
}

.center{
    background-color: #fff;
    width: 490px;
    /* margin-top: 40px; */
}

.img{
    margin-left: auto;
    margin-right: auto;
    background-color: #fff;
    width: 490px;
    margin-top: 40px;
}

.img img{
    padding-inline: 50px;
}

.form{
    margin-top: 40px;
    padding-inline: 50px;
    width: 490px;
}

label{
    font-size: 14px;
    color: #212529;
}

.input-box{
    width: 380px;
    padding-top: 5px;
    padding-bottom: 20px;
}

.input-box input{
    box-sizing: border-box;
    width: 100%;
    height: 35px;
    border-color: #bbb;
    border: 1px solid #666;
    border-radius: 3;
    margin: 0 auto;
    padding-left: 15px;
    font-size: 18px;
    color: #000;
    box-sizing: border-box;
    font-family: inherit;
    font-weight: 300;
    font-size: 1rem;
    appearance: none;
	outline-color: #306154;
}

.togg{
    margin-top: 20px;
    margin-bottom: 40px;
}

.togg i{
    cursor: pointer;
}

.top{
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.bottom{
    display: flex;
    gap: 15px;
}

.top p{
    width: 320px;
    font-size: 14px;
}

.bottom p{
    font-size: 14px;
    width: 200px;
}

.butt{
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.butt .btn{
    color: #fff;
    background-color: #306154;
    border: none;
    font-size: 18px;
    padding: 8px 15px;
    border-radius: 3px;
    cursor: pointer;
}


@media (max-width:700px){
    .img{
        width: 0px;
        display: flex;
        justify-content: center;
    }
    
    .img img{
        padding-inline: 50px;
        margin-bottom: 10px;
        width: 150px;
    }

    .butt{
        margin-bottom: 300px;
    }
}