/* Odstúpenie od zmluvy — online formulár
   Scopované na .withdrawal-page (stránka information/withdrawal) */

.withdrawal-page {
    padding-bottom: 3rem;
}

.withdrawal-page .withdrawal-intro {
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
    background: #f7f7f7;
    border-left: 4px solid #ff5e14;
    padding: 1rem 1.25rem;
    border-radius: 4px;
}

.withdrawal-page .withdrawal-form fieldset {
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.5rem;
}

.withdrawal-page .withdrawal-form legend {
    width: auto;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0 .5rem;
    margin-bottom: 1rem;
    color: #ff5e14;
    border: none;
}

.withdrawal-page .withdrawal-form .form-group {
    margin-bottom: 1rem;
}

.withdrawal-page .withdrawal-form .col-form-label {
    font-weight: 500;
    padding-bottom: .35rem;
}

.withdrawal-page .withdrawal-form .form-group.required .col-form-label::after {
    content: " *";
    color: #dc3545;
    font-weight: 700;
}

.withdrawal-page .withdrawal-form .form-control {
    border-radius: 4px;
}

.withdrawal-page .withdrawal-confirm {
    background: #fff8f3;
    border: 1px solid #ffd9c2;
    border-radius: 6px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.5rem;
}

.withdrawal-page .withdrawal-legal {
    font-size: .9rem;
    color: #666;
    margin-bottom: 1rem;
}

.withdrawal-page .withdrawal-confirm .form-check {
    padding-left: 1.75rem;
}

.withdrawal-page .withdrawal-confirm .form-check-label {
    font-size: .95rem;
    cursor: pointer;
}

.withdrawal-page .withdrawal-form .text-danger {
    font-size: .85rem;
    margin-top: .25rem;
}

.withdrawal-page .withdrawal-form input.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 .15rem rgba(220, 53, 69, .15);
}

.withdrawal-page .withdrawal-form input.is-valid {
    border-color: #28a745;
    box-shadow: 0 0 0 .15rem rgba(40, 167, 69, .15);
}

/* IBAN polia – naznačenie, že sa píšu ručne */
.withdrawal-page .withdrawal-form .iban-no-paste {
    letter-spacing: .04em;
}

/* Výsledok živého overenia objednávky */
.withdrawal-page .order-check {
    font-size: .9rem;
    margin-top: .25rem;
    min-height: 1.2em;
    padding-left: 1.5rem;
    position: relative;
}

.withdrawal-page .order-check--checking {
    color: #666;
}
.withdrawal-page .order-check--checking::before {
    content: "⏳";
    position: absolute;
    left: 0;
}

.withdrawal-page .order-check--valid {
    color: #28a745;
    font-weight: 600;
}
.withdrawal-page .order-check--valid::before {
    content: "✓";
    position: absolute;
    left: 0;
}

.withdrawal-page .order-check--invalid {
    color: #dc3545;
    font-weight: 600;
}
.withdrawal-page .order-check--invalid::before {
    content: "✕";
    position: absolute;
    left: 0;
}

.withdrawal-page .btn-primary {
    padding: .65rem 2.5rem;
    font-weight: 600;
}

@media (max-width: 575.98px) {
    .withdrawal-page .withdrawal-form fieldset {
        padding: 1rem;
    }
}
