* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: 'Quicksand', sans-serif;
    background-color: #f8c0d9;
    color: #000000;
}

.main-wrapper {
    display: flex;
    justify-content: center;
    padding: 0px 15px;
}

.content-card {
    width: 100%;
    max-width: 600px;
    background: #F8C1D9;
    margin: 16px 0;
    border-radius: 32px;
    box-shadow: 0px 0px 16px #F8BFD7;
}

.header { 
    text-align: center; 
    border-radius: 24px;
	
}

.logo { height: 160px; width: auto; margin: 16px 0 0 0; }
.intro-text { font-size: 1.2rem; line-height: 1.4; }

.page-title {
    margin: 20px 0;
    line-height: 0;
}

.form-section {
    background: transparent;
    margin-bottom: 8px; 
    padding: 16px;
}

.regbutton { text-align: center; }

label { display: block; font-weight: 500; margin-bottom: 5px; font-size: 0.95rem; }
label span { color: black; }

input, select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ced4da;
    border-radius: 8px;
    font-size: 1rem;
    background: #ffffff;
}

.input-group {
    display: flex;
    gap: 10px;
}

small { color: #666; display: block; margin-top: 5px; }

.main-fields {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.field-full { flex: 0 0 100%; }
.field-half { flex: 0 0 calc(50% - 7.5px); }

.btn-main {
    width: 80%;
    background-color: #e70593;
    color: #ffffff;
    border: none;
    padding: 16px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 32px;
    cursor: pointer;
    margin-top: 15px;
}

.btn-secondary {
    background-color: #e70593;
    color: #ffffff;
    border: none;
    padding: 0 20px;
    border-radius: 24px;
    cursor: pointer;
    white-space: nowrap;
    font-size: 16px;
    font-weight: 700;
}

.privacy-note { font-size: 0.85rem; margin-top: 10px; color: #555; text-align: center; }
.prizes-section { margin-top: 30px; }
.prizes-img { width: 100%; height: auto; border-radius: 8px; }

.footer { 
    text-align: center; 
    margin-top: 50px; 
    padding-bottom: 0px; 
    background: #D180A4; 
    border-radius: 0 0 32px 32px; 
    padding-top: 8px; 
    color: #fff;
}

.footer h5 { margin-bottom: 15px; font-size: 1.2rem; }
.footer p { margin: 10px 0; font-size: 0.9rem; }
.copyright {  font-size: 0.75rem; text-align: center; margin-bottom: 16px;}

a { color: #b0006d; text-decoration: underline; }

.registracia_flash {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
	margin-bottom: -32px
}

.sutaz { margin-top: -32px; }
.regms { margin-top: -40px; }
.kontakty_h { width: 124px; min-width: 100px; height: auto; }

.checkbox-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 8px;
    margin: 20px 0 10px 0;
    text-align: left;
}

.checkbox-wrapper input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-wrapper label {
    font-size: 0.9rem;
    line-height: 1.4;
    cursor: pointer;
    user-select: none;
}

@media (max-width : 442px ){
    .main-wrapper { padding: 20px 10px; }
    .field-half { flex: 0 0 100%; }
    .input-group { flex-direction: column; }
    .btn-secondary { padding: 12px; }
    .sutaz { margin-top: -15px; }
    .regms { margin-top: -20px; }
	
	.header {
        /* Na mobiloch zmenšujeme min-height, aby tam nevzniklo prázdne miesto, 
           keďže obrázok sa zmenší podľa šírky */
        min-height: 300px; 
        background-size: contain; /* Voliteľné: ak chcete vidieť celý obrázok bez orezu */
    }
}

.sutaz_link{
	
    background-color: #ffffff;
    color: #e6007e; 
    font-weight: bold;
    text-decoration: none;
	display: inline-block;
    padding: 12px 40px;
    border-radius: 50px;
    text-align: center;
    margin: 20px auto;
}

.footer img{ width: 85%;}

.social {
    background-color: #0096d1; /* Presná modrá z vášho obrázka */
    padding: 15px 0;           /* Vertikálne odsadenie */
    text-align: center;
    display: flex;
    justify-content: center;   /* Vycentruje ikony vodorovne */
    align-items: center;       /* Vycentruje ikony zvisle */
    gap: 25px;                 /* Medzera medzi ikonami */
    width: 100%;               /* Aby pás zaberal celú šírku */
    box-sizing: border-box;
	border-radius: 0 0 32px 32px;
	margin-top:32px;
}

.social a {
    display: flex;             /* Odstráni nežiaduce medzery pod odkazom */
    text-decoration: none;
    
}

@supports not (gap: 25px) {
    .social a {
        margin: 0 12.5px;
    }
}


.social img {
    width: 40px;  /* Veľkosť ikon podľa potreby */
    height: auto;
    display: block;
}

.alert {
    position: relative;
    padding: 12px 20px;
    margin: 1.143rem;
    border: 1px solid transparent;
    border-radius: .215rem;
}

.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}