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

body{
    background:#f4f7fb;
}

.header{
    background:#4f46e5;
    color:#fff;
    padding:20px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    color:#fff;
    text-decoration:none;
    font-size:28px;
    font-weight:bold;
}

nav a{
    color:#fff;
    text-decoration:none;
    margin-left:20px;
}

.container{
    width:90%;
    max-width:700px;
    margin:40px auto;
    background:#fff;
    padding:30px;
    border-radius:12px;
    box-shadow:0 5px 20px rgba(0,0,0,.1);
    text-align:center;
}

h1{
    margin-bottom:10px;
}

p{
    color:#666;
    margin-bottom:20px;
}

input[type=file]{
    margin:20px 0;
}

.preview img{
    max-width:100%;
    max-height:350px;
    border-radius:10px;
    display:none;
}

.inputs{
    display:flex;
    gap:15px;
    justify-content:center;
    margin:20px 0;
    flex-wrap:wrap;
}

.inputs input{
    width:150px;
    padding:12px;
    border:1px solid #ccc;
    border-radius:8px;
    text-align:center;
}

button,
#downloadBtn{
    background:#4f46e5;
    color:#fff;
    border:none;
    padding:12px 30px;
    border-radius:8px;
    cursor:pointer;
    text-decoration:none;
    display:inline-block;
}

button:hover,
#downloadBtn:hover{
    background:#3730a3;
}

@media(max-width:768px){

.header{
    flex-direction:column;
    gap:10px;
}

.inputs{
    flex-direction:column;
    align-items:center;
}

.inputs input{
    width:100%;
    max-width:300px;
}
  
}
