
.form-box{
    width:900px;
    background:#fff;
    margin:auto;
    margin-top: 30px;
    padding:35px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
}

@keyframes fadeIn{
    from{
        opacity:0;
        transform:translateY(20px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

h2{
    text-align:center;
    margin-bottom:25px;
    color:#333;
}

.row{
    display:flex;
    gap:20px;
    margin-bottom:15px;
}

.input-group{
    flex:1;
    display:flex;
    flex-direction:column;
    margin-bottom:15px;
}

label{
    margin-bottom:8px;
    font-weight:600;
    color:#444;
}

input,
select,
textarea{
    padding:12px;
    border:1px solid #ccc;
    border-radius:8px;
    outline:none;
    transition:.3s;
}

input:focus,
select:focus,
textarea:focus{
    border-color:#667eea;
    box-shadow:0 0 8px rgba(102,126,234,.3);
}

textarea{
    resize:none;
    height:100px;
}

.preview{
    width:150px;
    height:150px;
    border-radius:10px;
    object-fit:cover;
    margin-top:15px;
    display:none;
    border:3px solid #667eea;
}

button{
    width:100%;
    padding:15px;
    border:none;
    background:linear-gradient(135deg,#667eea,#764ba2);
    color:#fff;
    font-size:18px;
    border-radius:8px;
    cursor:pointer;
    transition:.3s;
}

button:hover{
    transform:translateY(-2px);
}

@media(max-width:768px){
    .row{
        flex-direction:column;
    }

    .form-box{
        width:100%;
    }
}