﻿/* Shared layout (same as splash screen) */
body {
    background: #f7f5fb;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #333;
}

/* Container styling */
.thank-container,
.splash-container {
    max-width: 500px;
    margin: auto;
}

.logo {
    width: 500px;
    margin-bottom: 20px;
}

/* Purple text headers */
h3 {
    color: #a72ea4;
    margin-bottom: 20px;
}

/* Optional spacing */
.mb-2 {
    margin-bottom: 0.75rem !important;
}

/* Optional: greyed-out effect when disabled via Bootstrap "disabled" class */
input.disabled, select.disabled, button.disabled {
    opacity: 0.6;
    pointer-events: none;
}

/* Optional spacing */
.mb-2 {
    margin-bottom: 0.75rem !important;
}

body {
    background: #f7f5fb;
    color: #333;
    font-family: sans-serif;
}

.card {
    border-radius: 1rem;
}

input.form-control {
    border-radius: 0.5rem;
}

#preferences-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px !important;
}

#preferences-card .form-label {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

#preferences-card .form-check {
    margin-left: 5px;
    margin-bottom: 6px;
}

#preferences-card .form-check-input {
    transform: scale(1.2);
    margin-right: 8px;
}

#preferences-card button {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    font-size: 1.1rem;
}

#extraFields > div {
    border-bottom: 1px solid #eee;
    padding-bottom: 12px;
    margin-bottom: 20px;
}

#extraFields > div:last-child {
    border-bottom: none;
    margin-bottom: 10px;
}

.form-check {
    margin-left: 0 !important; /* usuwa niechciane wcięcie */
    text-align: left;
    font-size: 0.8em;
    font-weight:bold;
}

.preferences-card {
    background: #fff;
    padding: 1.5rem;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    margin-top: 1rem;
}

.form-check-label {
    margin-left: 0.5rem;
}

.bonus-alert {
    background: #fff; /* białe tło */
    border-left: 5px solid #28a745; /* zielona krawędź */
    color: #28a745; /* zielony tekst */
    padding: 1rem;
    margin-top: 1rem;
}

h2.thank-you {
    color: #000; /* czarny nagłówek */
    text-align: center;
}

.green-tick {
    color: #28a745;
    font-size: 2rem;
    vertical-align: middle;
    margin-right: 0.5rem;
}
