body {
    font-family: 'Cairo', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #a73489, #f7b500, #f36f24);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.header img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.header .language {
    position: absolute;
    top: 0;
    right: 0;
    padding: 8px 15px;
    display: flex;
    gap: 10px;
    background: rgba(255, 255, 255, 0.9);
    border-bottom-left-radius: 12px;
}

.header .language a {
    font-size: 16px;
    text-decoration: none;
    color: #58214d;
    font-weight: bold;
}

.form-section {
    padding: 40px 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#draw-form {
    border-radius: 20px;
    background-color: #fff;
    font-size: 18px;
    padding: 25px;
    max-width: 500px;
    width: 100%;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 8px 24px;
}

#draw-form input,
#draw-form select {
    border: 2px solid #f1b20f;
    background-color: #fff8e1;
    color: #58214d;
    font-size: 16px;
    border-radius: 12px;
    padding: 12px 15px;
}

#draw-form input::placeholder {
    color: #a73489;
    font-weight: 600;
}

#draw-form input:focus,
#draw-form select:focus {
    outline: none;
    border-color: #a73489;
    box-shadow: 0 0 8px rgba(167, 52, 137, 0.3);
}

#draw-form .form-check-label {
    color: #58214d;
    font-weight: bold;
}

#draw-form button {
    background: linear-gradient(90deg, #f36f24, #f1b20f);
    border: none;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    padding: 12px;
    border-radius: 30px;
    width: 100%;
    transition: all 0.3s ease;
}

#draw-form button:hover {
    background: linear-gradient(90deg, #a73489, #f36f24);
}

.form-check-input:checked[type=checkbox] {
    background-color: #ff9900 !important;
    border-color: #ff9900 !important;
}
