
body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #8b0000, #2e2e2e);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}
.container {
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
    text-align: center;
    max-width: 500px;
}
input[type="text"], input[type="date"], input[type="number"], input[type="file"] {
    width: 90%;
    padding: 10px;
    border-radius: 10px;
    border: none;
    margin: 8px 0;
}
button {
    background: #a00000;
    border: none;
    padding: 12px 20px;
    border-radius: 10px;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
}
button:hover { background: #c00000; }
.result-container {
    display: flex;
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    max-width: 900px;
}
.result-info {
    flex: 1;
    padding: 20px;
}
.result-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.result-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255,255,255,0.2);
}
.logo {
    width: 180px;
    margin-bottom: 20px;
}
.qr-image {
    width: 150px;
    margin-top: 10px;
}
