*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    background:linear-gradient(135deg,#eef5ff,#ffffff);
    padding:40px;
}

.container{
    width:100%;
    max-width:950px;
    background:#fff;
    border-radius:28px;
    overflow:hidden;
    box-shadow:0 25px 60px rgba(0,0,0,.08);
}

/* Hero */

.hero{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:60px;
    background:linear-gradient(90deg,#ffffff 45%,#eef7ff);
}

.left{
    width:55%;
}

.logo{
    font-size:14px;
    font-weight:600;
    color:#0c4da2;
    letter-spacing:2px;
    margin-bottom:20px;
}

.logo span{
    display:block;
    font-size:32px;
    font-weight:700;
    letter-spacing:1px;
}

h1{
    color:#0a3b86;
    font-size:48px;
    margin-bottom:20px;
}

.desc{
    color:#666;
    line-height:1.7;
    font-size:17px;
}

.right{
     
    display:flex;
    justify-content:center;
}

.right img{
    width:100%;
    max-width:330px;
}

/* Card */

.form-card{
    width:82%;
    margin:-40px auto 40px;
    background:#fff;
    border-radius:22px;
    padding:35px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

label{
    display:block;
    margin-bottom:10px;
    color:#173a83;
    font-weight:600;
    letter-spacing:.5px;
}

input{
    width:100%;
    height:58px;
    border:2px solid #dbe5f3;
    border-radius:12px;
    padding:0 20px;
    font-size:18px;
    outline:none;
    transition:.3s;
}

input:focus{
    border-color:#1d64d7;
}

button{
    width:100%;
    height:60px;
    margin-top:22px;
    border:none;
    border-radius:12px;
    background:#0c5adf;
    color:#fff;
    font-size:22px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

button:hover{
    background:#0048c7;
}

/* Features */

.features{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    padding:10px 50px 40px;
}

.feature{
    text-align:center;
}

.icon{
    width:60px;
    height:60px;
    margin:auto;
    border-radius:50%;
    background:#edf4ff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:28px;
    color:#0a57d6;
    margin-bottom:15px;
}

.feature h3{
    font-size:16px;
    color:#123a82;
    margin-bottom:8px;
}

.feature p{
    color:#777;
    font-size:14px;
    line-height:1.5;
}

.footer{
    border-top:1px solid #e7edf8;
    text-align:center;
    padding:25px;
    color:#777;
}

.footer a{
    color:#0d5ddb;
    text-decoration:none;
    font-weight:600;
}

@media(max-width:900px){

.hero{
    flex-direction:column;
    text-align:center;
    padding:40px;
}

.left,.right{
    width:100%;
}

.right{
    margin-top:30px;
}

h1{
    font-size:38px;
}

.form-card{
    width:92%;
}

.features{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:600px){

.features{
    grid-template-columns:1fr;
}

.hero{
    padding:30px;
}

h1{
    font-size:32px;
}

}