body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: linear-gradient(135deg, #74ABE2, #5563DE);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.container {
    background: white;
    padding: 25px;
    max-width: 420px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    text-align: center;
}

h1 {
    color: #333;
}

.subtitle {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}

label {
    display: block;
    margin: 10px 0 5px;
    font-weight: bold;
}

select, input, textarea {
    padding: 10px;
    width: 90%;
    border: 1px solid #ccc;
    border-radius: 6px;
    margin-bottom: 15px;
    font-size: 14px;
}

textarea {
    height: 60px;
}

button {
    padding: 10px 20px;
    background: linear-gradient(45deg, #ff6f61, #ff9068);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
    transition: 0.3s;
}

button:hover {
    transform: scale(1.05);
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

#qrcode {
    margin-top: 20px;
}

#buttons {
    margin-top: 15px;
}

#downloadBtn, #shareBtn {
    display: inline-block;
    padding: 8px 16px;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    margin: 5px;
    transition: 0.3s;
}

#downloadBtn {
    background: linear-gradient(45deg, #42e695, #3bb2b8);
}

#shareBtn {
    background: linear-gradient(45deg, #ff7eb3, #ff758c);
    border: none;
    cursor: pointer;
}

#downloadBtn:hover, #shareBtn:hover {
    transform: scale(1.05);
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}
