:root { --primary: #FF5353; --bg: #FFF9F9; }
body { font-family: sans-serif; background: var(--bg); margin: 0; display: flex; justify-content: center; align-items: center; min-height: 100vh; }
.container { width: 95%; max-width: 400px; background: white; border-radius: 15px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.header { background: var(--primary); padding: 20px; text-align: center; color: white; }
.header img { max-width: 140px; filter: brightness(0) invert(1); }
form { padding: 20px; }
.form-group { margin-bottom: 12px; }
label { display: block; font-weight: bold; margin-bottom: 5px; color: #555; }
input, select { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 8px; box-sizing: border-box; font-size: 16px; }
.hidden { display: none !important; }
button { width: 100%; padding: 14px; background: var(--primary); color: white; border: none; border-radius: 25px; font-weight: bold; cursor: pointer; }
.overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.85); display: flex; justify-content: center; align-items: center; z-index: 1000; }
.success-card { background: white; padding: 30px; border-radius: 20px; text-align: center; width: 80%; }
.result-info { text-align: left; background: #f9f9f9; padding: 15px; border-radius: 10px; margin: 15px 0; border-left: 5px solid var(--primary); }
.admin-link { text-align: center; padding-bottom: 15px; }
.admin-link a { color: #ccc; text-decoration: none; font-size: 0.8rem; }