body{
    margin:0;
    padding:40px 20px;
    background:#f3f6fb;
    font-family:'Segoe UI',sans-serif;
    color:#1e293b;
}

.container{
    max-width:1200px;
    margin:auto;
}

.hero{
    background:linear-gradient(135deg,#0d5ea8,#0b4d88);
    border-radius:28px;
    padding:40px;
    color:white;
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:35px;
    box-shadow:0 10px 35px rgba(0,0,0,.10);
}

.hero-left{
    display:flex;
    align-items:center;
    gap:20px;
}

.hero-icon{
    width:72px;
    height:72px;
    border-radius:50%;
    background:rgba(255,255,255,.14);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
}

.hero h1{
    margin:0;
    font-size:40px;
    font-weight:700;
}

.hero p{
    margin-top:10px;
    opacity:.92;
    line-height:1.7;
    max-width:700px;
}

.hero-logo img{
    height:95px;
    object-fit:contain;
}

.card{
    background:white;
    border-radius:24px;
    padding:40px;
    box-shadow:0 8px 30px rgba(0,0,0,.05);
}

.card h2{
    margin-top:0;
    color:#0f172a;
    font-size:34px;
    margin-bottom:10px;
}

.card-description{
    color:#64748b;
    margin-bottom:35px;
    line-height:1.7;
}

.form-group{
    margin-bottom:28px;
}

.form-group label{
    display:block;
    margin-bottom:10px;
    font-weight:600;
    color:#334155;
}

.form-group input{
    width:100%;
    max-width:420px;
    padding:16px 18px;
    border:1px solid #cbd5e1;
    border-radius:14px;
    font-size:16px;
    outline:none;
    transition:.2s;
    background:#f8fafc;
}

.form-group input:focus{
    border-color:#0d5ea8;
    box-shadow:0 0 0 4px rgba(13,94,168,.10);
    background:white;
}

.btn-submit{
    background:#0d5ea8;
    color:white;
    border:none;
    padding:15px 28px;
    border-radius:14px;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.2s;
    box-shadow:0 4px 14px rgba(13,94,168,.20);
}

.btn-submit:hover{
    background:#0b4d88;
    transform:translateY(-2px);
}

.footer{
    text-align:center;
    margin-top:35px;
    color:#64748b;
    font-size:14px;
}

@media(max-width:768px){

.hero{
    flex-direction:column;
    text-align:center;
    gap:25px;
}

.hero-left{
    flex-direction:column;
}

.hero h1{
    font-size:30px;
}

.hero-logo img{
    height:75px;
}

.card{
    padding:28px;
}

.card h2{
    font-size:28px;
}

.form-group input{
    max-width:100%;
}

}