*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}
 
body{
    height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;

    background:
    radial-gradient(circle at top left,#7c3aed 0%,transparent 40%),
    radial-gradient(circle at bottom right,#06b6d4 0%,transparent 40%),
    #0f172a;

    overflow:hidden;
}
.main-container{
    width:1100px;
    height:600px;
    background:rgba(255,255,255,0.08);
    backdrop-filter:blur(20px);
    border:1px solid rgba(255,255,255,0.15);
    border-radius:24px;
    overflow:hidden;
    display:flex;
    box-shadow:
    0 25px 50px rgba(0,0,0,.4);
}
 .features{
    margin-top:30px;
}

.features p{
    margin:12px 0;
    font-size:16px;
}
.left-panel{
    width:55%;
    background:linear-gradient(
        135deg,
        #2563eb,
        #7c3aed,
        #9333ea
    );
 
    color:white;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    position:relative;
}
 
.left-panel h1{
    font-size:56px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:15px;
}
 
.left-panel p{
    font-size:18px;
}
 
.right-panel{
    width:45%;
    padding:70px 60px;
    background:white;
}
 
.right-panel h2{
    text-align:center;
    margin-bottom:40px;
    color:#333;
}
 
label{
    display:block;
    margin-bottom:8px;
    font-weight:bold;
}
input{
    width:100%;
    height:52px;
    border:none;
    border-radius:12px;
    background:#f1f5f9;
    padding:0 15px;
    margin-bottom:25px;
    transition:.3s;
}
input:focus{
    background:white;
    box-shadow:
    0 0 0 3px rgba(37,99,235,.2);
} 
button{
    width:100%;
    height:52px;
    border:none;
    border-radius:12px;
    font-size:16px;
    font-weight:600;
    color:white;
    cursor:pointer;
    background:
    linear-gradient(
        90deg,
        #06b6d4,
        #2563eb
    );
    transition:.3s;
}
button:hover{
    transform:translateY(-2px);
    box-shadow:
    0 12px 30px rgba(37,99,235,.35);

}

table{
    width: 100%;
    margin-top: 20px;
    border-collapse: collapse;
}

th,td{
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}

th{
    background:#2563eb;
    color: white;
}