*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}


body{

    background:#f8f6f2;

}



.register-page{

    min-height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

}



.register-box{

    width:700px;

    padding:40px 0;
    border: 1px solid #ddd;
    padding: 50px;
    margin: 50px 0;
    border-radius: 20px;
}



.logo{

    font-size:12px;
    font-weight:600;
    color:#0057ff;

    margin-bottom:20px;

}


.logo span{

    font-size:14px;

}



h1{

    font-size:18px;

    font-weight:600;

    color:#111;

    margin-bottom:10px;

}



.subtitle{

    font-size:14px;

    color:#555;

    line-height:18px;

    width:350px;

    margin-bottom:18px;

}




label{

    display:block;

    font-size:14px;

    font-weight:600;

    margin-bottom:5px;

    color:#222;

}



input,
select{

    width:100%;

    height:35px;

    border:1px solid #888;

    border-radius:20px;

    padding:0 12px;

    font-size: 13px;

    outline:none;

    background:#fff;

    margin-bottom: 15px;

}



.two-input{

    display:flex;

    gap:10px;

}


.two-input input{

    width:50%;

}



.dob{

    display:flex;

    gap:12px;

}


.dob select{

    width:33%;

}



.full{

    margin-bottom:12px;

}




small{

    display:block;

    font-size:13px;

    color:#999;

    margin-top:-5px;

    margin-bottom:10px;

}


small span,
.terms span{

    color:#0057ff;

}



.terms{

    font-size:13px;

    color:#888;

    line-height:18px;

    margin-bottom:15px;

}



button{

    width:100%;

    height:35px;

    border:none;

    border-radius:20px;

    background:#0759ff;

    color:white;

    font-size:12px;

    cursor:pointer;

    margin-bottom:10px;

}



.login-btn{

    background:white;

    color:#0759ff;

    border:1px solid #aaa;

}
.logoStart img{
    width: 150px;
}


@media(max-width:600px){

.register-box{

    width:90%;

}


.subtitle{

    width:100%;

}

}