*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:linear-gradient(135deg,#2563eb,#7c3aed);
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:30px;
}

.container{
    width:100%;
    max-width:1300px;
    display:grid;
    grid-template-columns:1fr 1fr;
    background:white;
    border-radius:28px;
    overflow:hidden;
    box-shadow:0 10px 40px rgba(0,0,0,0.2);
}

.left-section{
    background:linear-gradient(135deg,#1e3a8a,#7c3aed);
    color:white;
    padding:60px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.left-section h1{
    font-size:48px;
    margin-bottom:20px;
}

.left-section p{
    font-size:18px;
    line-height:1.7;
    color:#dbeafe;
}

.left-section img{
    width:280px;
    margin-top:40px;
}

.right-section{
    padding:50px;
}

.card h2{
    margin-bottom:30px;
    color:#111827;
}

.form-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
}

.input-group{
    display:flex;
    flex-direction:column;
}

label{
    margin-bottom:8px;
    color:#374151;
    font-weight:500;
}

input,
select{
    padding:14px;
    border:1px solid #d1d5db;
    border-radius:12px;
    outline:none;
    font-size:15px;
    transition:0.3s;
}

input:focus,
select:focus{
    border-color:#2563eb;
    transform:scale(1.02);
}

button{
    width:100%;
    margin-top:35px;
    padding:16px;
    border:none;
    border-radius:14px;
    background:#2563eb;
    color:white;
    font-size:18px;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
}

button:hover{
    background:#1d4ed8;
    transform:translateY(-2px);
}

.result-box{
    margin-top:25px;
    padding:18px;
    border-radius:14px;
    background:#f3f4f6;
    text-align:center;
    font-size:20px;
    font-weight:600;
    color:#111827;
}

@media(max-width:1000px){

    .container{
        grid-template-columns:1fr;
    }

    .left-section{
        text-align:center;
        align-items:center;
    }

    .left-section img{
        width:220px;
    }
}