@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=DM+Sans:wght@400;500;600;700&display=swap');

:root {
    --color-primary: #6B9BD1;
    --color-secondary: #5BB3A0;
    --color-accent-warm: #F4A583;
    --color-light-cream: #F5F3FF;
    --color-white: #FFFFFF;
    --color-text-dark: #2C3E50;
    --color-text-muted: #6B7280;
    --shadow-soft-md: 0 8px 28px rgba(107, 155, 209, 0.15);
    --transition-ease: all 0.3s ease-in-out;
}

* { box-sizing: border-box; margin: 0; padding: 0; font-family: 'DM Sans', sans-serif; }
body { background: linear-gradient(135deg, var(--color-light-cream) 0%, #EBF4F6 100%); min-height: 100vh; display: flex; justify-content: center; align-items: center; padding: 25px 15px; color: var(--color-text-dark); }

.kiosk-container { width: 100%; max-width: 520px; background: rgba(255, 255, 255, 0.94); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-radius: 28px; padding: 35px 25px; box-shadow: var(--shadow-soft-md); border: 1px solid rgba(255, 255, 255, 1); }

.kiosk-header { text-align: center; margin-bottom: 25px; }
.kiosk-header img { width: 70px; height: 70px; margin-bottom: 12px; border-radius: 16px; object-fit: contain; box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
.kiosk-header h1 { font-family: 'Outfit', sans-serif; font-size: 22px; font-weight: 800; color: var(--color-secondary); letter-spacing: -0.5px; }
.kiosk-header p { font-size: 13px; color: var(--color-text-muted); margin-top: 4px; font-weight: 500; }

.live-clock-badge { display: inline-flex; align-items: center; justify-content: center; width: 100%; gap: 8px; background: #F0FDF4; color: #166534; padding: 8px; border-radius: 12px; font-size: 12px; font-weight: 700; margin-bottom: 20px; border: 1px solid #BBF7D0; }

.alert-box { padding: 15px 20px; border-radius: 16px; margin-bottom: 20px; font-size: 13px; line-height: 1.5; text-align: center; }
.alert-success { background: #D1FAE5; color: #065F46; border: 1px solid rgba(16, 185, 129, 0.3); }
.alert-error { background: #FEE2E2; color: #991B1B; border: 1px solid rgba(239, 68, 68, 0.3); }

.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 6px; color: var(--color-text-dark); }
.form-control { width: 100%; padding: 12px 16px; border-radius: 14px; border: 1px solid rgba(107, 155, 209, 0.25); background: var(--color-white); font-size: 14px; font-weight: 500; outline: none; transition: var(--transition-ease); color: var(--color-text-dark); box-shadow: inset 0 2px 4px rgba(0,0,0,0.01); }
.form-control:focus { border-color: var(--color-secondary); box-shadow: 0 0 0 4px rgba(91, 179, 160, 0.15); }
textarea.form-control { resize: vertical; min-height: 70px; }

.file-upload-box { border: 2px dashed rgba(91, 179, 160, 0.4); background: #F8FAFC; padding: 15px; border-radius: 14px; text-align: center; cursor: pointer; transition: var(--transition-ease); }
.file-upload-box:hover { border-color: var(--color-secondary); background: #F0FDF4; }
.file-upload-box input[type="file"] { width: 100%; font-size: 13px; cursor: pointer; }

.btn-submit { width: 100%; background: linear-gradient(135deg, var(--color-secondary), #489A8A); color: white; border: none; padding: 16px; border-radius: 16px; font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 16px; cursor: pointer; transition: var(--transition-ease); box-shadow: 0 6px 20px rgba(91, 179, 160, 0.3); margin-top: 10px; display: flex; justify-content: center; align-items: center; gap: 10px; }
.btn-submit:hover { transform: translateY(-3px); box-shadow: 0 10px 25px rgba(91, 179, 160, 0.4); }

.info-blankspot { background: rgba(244, 165, 131, 0.15); border-left: 4px solid #E27D56; padding: 12px 16px; border-radius: 12px; font-size: 12px; color: #9A3412; margin-top: 25px; line-height: 1.6; }
.footer-link { text-align: center; margin-top: 25px; font-size: 13px; }
.footer-link a { color: var(--color-primary); font-weight: 700; text-decoration: none; }