/* static/sitevitrine/css/registration.css */

.registration-form {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
    padding: 30px;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    color: #f35a59;
    margin-bottom: 20px;
}

.form-control:focus {
    border-color: #f35a59;
    box-shadow: 0 0 0 0.25rem rgba(243, 90, 89, 0.25);
}

.btn-primary {
    background-color: #f35a59;
    border-color: #f35a59;
}

.btn-primary:hover {
    background-color: #e34a49;
    border-color: #e34a49;
}

/* Steps Navigation */
.step {
    padding: 10px;
    position: relative;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.step.active {
    opacity: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f35a59;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-weight: bold;
}

.progress-bar {
    background-color: #f35a59;
}

/* Custom Radio Boxes */
.custom-radio-box .form-check-input {
    display: none;
}

.custom-radio-box .form-check-label {
    cursor: pointer;
    transition: all 0.3s ease;
}

.custom-radio-box .form-check-input:checked+.form-check-label .card {
    border-color: #f35a59;
    background-color: #fff5f5;
}

.custom-radio-box .card:hover {
    border-color: #f35a59;
    transform: translateY(-2px);
}

/* Debug styles */
.debug-info {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    padding: 15px;
    margin: 15px 0;
}

/* Loading spinner */
.loading-spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #f35a59;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
    display: inline-block;
    margin-right: 10px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}