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

body{
    height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    background:linear-gradient(135deg,#667eea,#764ba2);
}

.container{
    display:flex;
    gap:40px;
    align-items:center;
}

.form-box{
    background:rgba(255,255,255,0.15);
    backdrop-filter:blur(15px);
    padding:30px;
    border-radius:20px;
    width:280px;
    box-shadow:0 10px 30px rgba(0,0,0,0.2);
}

.form-box h2{
    text-align:center;
    color:white;
    margin-bottom:20px;
}

.form-box input{
    width:100%;
    padding:10px;
    margin-bottom:10px;
    border:none;
    border-radius:8px;
    outline:none;
}

.form-box button{
    width:100%;
    padding:12px;
    border:none;
    border-radius:8px;
    background:#fff;
    color:#4f46e5;
    font-weight:bold;
    cursor:pointer;
    transition:0.3s;
}

.form-box button:hover{
    transform:scale(1.05);
}

.card{
    width:260px;
    background:white;
    border-radius:20px;
    text-align:center;
    padding:20px;
    box-shadow:0 15px 40px rgba(0,0,0,0.3);
    display:none;
    animation:pop 0.5s ease;
}

@keyframes pop{
    from{transform:scale(0.5); opacity:0;}
    to{transform:scale(1); opacity:1;}
}

.card-header{
    background:#4f46e5;
    color:white;
    padding:8px;
    border-radius:12px;
    margin-bottom:15px;
}

.card img{
    width:120px;
    height:120px;
    border-radius:50%;
    object-fit:cover;
    border:4px solid #4f46e5;
    margin-bottom:10px;
}

.card h2{
    margin:5px 0;
}

.card p{
    color:#555;
}