/**
 * Rozšířená registrace - Custom styly
 * Doplňující styly pro lepší integraci s WordPress tématy
 */

/* Wrapper pro registrační formulář */
.rr-form-wrapper {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Responzivní šířka */
@media (min-width: 576px) {
    .rr-form-wrapper {
        padding: 0 20px;
    }
}

@media (min-width: 768px) {
    .rr-form-wrapper {
        width: 95%;
        padding: 0 30px;
    }
}

@media (min-width: 992px) {
    .rr-form-wrapper {
        width: 90%;
        padding: 0 40px;
    }
}

@media (min-width: 1200px) {
    .rr-form-wrapper {
        width: 85%;
        max-width: 1400px;
    }
}

@media (min-width: 1600px) {
    .rr-form-wrapper {
        width: 80%;
        max-width: 1600px;
    }
}

/* Registrační formulář */
.rr-form-wrapper .card {
    border: none;
    border-radius: 10px;
}

.rr-form-wrapper .card-header {
    border-radius: 10px 10px 0 0 !important;
    padding: 1.5rem;
}

.rr-form-wrapper .card-body {
    padding: 2rem;
}

/* Responzivní úpravy */
@media (max-width: 768px) {
    #rr-register-form .card-body {
        padding: 1.5rem;
    }

    #rr-register-form .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* Validační feedback */
.form-control.is-valid,
.form-select.is-valid {
    border-color: #198754;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(.375em + .1875rem) center;
    background-size: calc(.75em + .375rem) calc(.75em + .375rem);
}

.form-control.is-invalid,
.form-select.is-invalid {
    border-color: #dc3545;
}

/* Tlačítko submit */
#submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Heslo - wrapper s okem */
.rr-password-wrap {
    position: relative;
}

.rr-password-wrap .form-control {
    padding-right: 45px !important;
}

.rr-toggle-pass {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 40px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 1.1rem;
    z-index: 3;
}

.rr-toggle-pass:hover {
    color: #333;
}

/* Alerts */
.alert {
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.alert-heading {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

/* WordPress kompatibilita */
.wp-core-ui #rr-register-form input[type="text"],
.wp-core-ui #rr-register-form input[type="email"],
.wp-core-ui #rr-register-form input[type="password"],
.wp-core-ui #rr-register-form select {
    max-width: 100%;
}

/* Loading stav */
#submit-btn.loading::after {
    content: "";
    display: inline-block;
    width: 1rem;
    height: 1rem;
    margin-left: 0.5rem;
    border: 2px solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spinner-border 0.75s linear infinite;
}

@keyframes spinner-border {
    to {
        transform: rotate(360deg);
    }
}

/* GDPR Modal styly */
#gdprModal .modal-body {
    max-height: 60vh;
    overflow-y: auto;
}

#gdprModal .modal-body h6 {
    font-weight: 600;
    margin-bottom: 0.75rem;
}

#gdprModal .modal-body ul {
    margin-bottom: 1rem;
}

#gdprModal .modal-body ul li {
    margin-bottom: 0.5rem;
}

#gdprModal .alert {
    font-size: 0.95rem;
}

#gdprModal .modal-header {
    border-bottom: 2px solid rgba(255,255,255,0.2);
}

#gdprModal .modal-footer {
    border-top: 1px solid #dee2e6;
}

/* Vlastní barva #fac42b místo standardní modré/oranžové */
.bg-warning {
    background-color: #fac42b !important;
    color: #000 !important;
}

.text-warning {
    color: #fac42b !important;
}

.btn-warning {
    background-color: #fac42b !important;
    border-color: #fac42b !important;
    color: #000 !important;
}

.btn-warning:hover {
    background-color: #e5b525 !important;
    border-color: #e5b525 !important;
    color: #000 !important;
}

.btn-warning:focus,
.btn-warning:active {
    background-color: #d0a520 !important;
    border-color: #d0a520 !important;
    color: #000 !important;
}

.border-warning {
    border-color: #fac42b !important;
}

.alert-warning {
    background-color: #fef8e7 !important;
    border-color: #fac42b !important;
    color: #000 !important;
}

/* Rovnomerne mezery mezi polemi formulare */
#rr-register-form .mb-3 {
    margin-bottom: 1.25rem !important;
}

/* Vetsi mezera nad stan/karavan */
#rr-register-form #stan_karavan {
    margin-top: 0;
}
#rr-register-form .rr-section-gap {
    margin-top: 2.5rem !important;
}

/* Checkboxy pojistka a GDPR - checkbox vedle textu */
#rr-register-form .rr-checkbox-row {
    margin-top: 1.5rem !important;
    margin-bottom: 1rem !important;
}

#rr-register-form .rr-checkbox-row label {
    display: flex !important;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
    margin-bottom: 0 !important;
}

#rr-register-form .rr-checkbox-row label span {
    line-height: 1.3 !important;
}

#rr-register-form .rr-checkbox-row input[type="checkbox"] {
    width: 1.1em;
    height: 1.1em;
    margin-top: 0.2em;
    flex-shrink: 0;
}

/* Mezera pred tlacitkem Registrovat */
#rr-register-form .btn-block {
    margin-top: 0.5rem;
}
