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

body{

    background:#f3f6fc;

    display:flex;

    justify-content:center;

    align-items:center;

    min-height:100vh;

    padding:25px;

}

.container{

    width:100%;

    max-width:450px;

}

.header{

    text-align:center;

    margin-bottom:25px;

}

.logo{

    width:95px;

    margin-bottom:10px;

}

.header h1{

    color:#0A2A66;

    font-size:34px;

    font-weight:700;

}

.header p{

    color:#666;

    font-size:14px;

}

.card{

    background:#fff;

    padding:30px;

    border-radius:25px;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

}

.card h2{

    color:#0A2A66;

    margin-bottom:5px;

}

.subtitle{

    color:#777;

    margin-bottom:25px;

    font-size:14px;

}

label{

    display:block;

    margin-bottom:8px;

    margin-top:15px;

    color:#333;

    font-weight:500;

}

input,
select{

    width:100%;

    height:55px;

    border:2px solid #E6E6E6;

    border-radius:15px;

    padding:15px;

    font-size:15px;

    transition:.3s;

}

input:focus,
select:focus{

    border-color:#49B36B;

    outline:none;

}

.checkbox{

    display:flex;

    align-items:flex-start;

    gap:10px;

    margin-top:20px;

}

.checkbox input{

    width:18px;

    height:18px;

    margin-top:3px;

}

.checkbox label{

    margin:0;

    font-size:13px;

    color:#666;

}

button{

    width:100%;

    margin-top:25px;

    height:58px;

    border:none;

    background:#49B36B;

    color:white;

    font-size:17px;

    border-radius:18px;

    cursor:pointer;

    transition:.3s;

    font-weight:600;

}

button:hover{

    background:#389C58;

}