/* RouteFlow SMS Registration Page Styles */

/* CTIA Compliance Styling */
.checkbox-group {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border: 2px solid #e0e0e0;
    margin-bottom: 1.5rem;
}

.checkbox-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.checkbox-item:last-child {
    margin-bottom: 0;
}

.checkbox-item input[type="checkbox"] {
    margin-right: 12px;
    margin-top: 4px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #494cdd;
    flex-shrink: 0;
}

.checkbox-item label {
    flex: 1;
    font-weight: 400;
    cursor: pointer;
    line-height: 1.5;
}

.checkbox-item .description {
    display: block;
    font-size: 14px;
    color: #666;
    margin-top: 0.25rem;
    line-height: 1.5;
}

.disclaimers {
    border-top: 2px solid #e0e0e0;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}

.disclaimers h3 {
    font-size: 18px;
    color: #3639d8;
    margin-bottom: 1rem;
    font-weight: 600;
}

.disclaimer-list {
    list-style: none;
    margin-bottom: 1.5rem;
    padding: 0;
}

.disclaimer-list li {
    padding: 0.75rem 0;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.disclaimer-list li:last-child {
    border-bottom: none;
}

.disclaimer-list strong {
    color: #333;
    font-weight: 600;
}

.disclaimer-list a {
    color: #494cdd;
    text-decoration: none;
    font-weight: 500;
}

.disclaimer-list a:hover {
    color: #686bff;
    text-decoration: underline;
}

/* Registration Step Transitions */
.registration-step {
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form Styling */
.form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.form-control:focus,
.form-select:focus {
    border-color: #494cdd;
    box-shadow: 0 0 0 0.2rem rgba(73, 76, 221, 0.25);
}

/* Responsive Design */
@media (max-width: 768px) {
    .checkbox-group {
        padding: 1.25rem;
    }

    .opt-in-header h1 {
        font-size: 28px;
    }

    .card-body {
        padding: 2rem 1.5rem !important;
    }
}

