body{
margin:0;
height:100vh;
display:flex;
justify-content:center;
align-items:center;
background:linear-gradient(135deg,#eef2f7,#e3e8f0);
font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto;
}

.upload-card{
background:white;
padding:45px;
border-radius:14px;
box-shadow:0 15px 40px rgba(0,0,0,0.12);
width:380px;
}

h2{
text-align:center;
margin-bottom:25px;
}

form{
display:flex;
flex-direction:column;
gap:16px;
}

input[type="text"],
input[type="email"]{
padding:12px;
border:1px solid #dcdcdc;
border-radius:8px;
font-size:14px;
}

.drop-area{
border:2px dashed #cfd6e4;
border-radius:12px;
padding:30px;
text-align:center;
cursor:pointer;
position:relative;
transition:0.2s;
}

.drop-area:hover{
border-color:#4c8bf5;
background:#f7faff;
}

.drop-area input{
position:absolute;
width:100%;
height:100%;
opacity:0;
cursor:pointer;
}

.upload-icon{
font-size:32px;
color:#4c8bf5;
}

.progress-container{
height:6px;
background:#eee;
border-radius:10px;
overflow:hidden;
display:none;
}

.progress-bar{
height:100%;
width:0%;
background:#4c8bf5;
transition:width 0.2s;
}

button{
background:#4c8bf5;
color:white;
border:none;
padding:13px;
border-radius:8px;
font-size:15px;
cursor:pointer;
font-weight:600;
}

button:hover{
background:#3a6fd9;
}

.status{
text-align:center;
font-size:14px;
margin-top:10px;
}