﻿.terms-container {
    margin: 16px;
    font-family: -apple-system, Roboto, sans-serif;
}

.checkbox-label {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: black;
    font-weight: bold;
}

.terms-checkbox {
    margin-right: 8px;
    accent-color: var(--ct-brand-color);
}

.terms-icon {
    height: 25px;
    margin-right: 8px;
}

.terms-texts {
    margin-left: 24px;
    margin-top: 8px;
    font-size: 15px;
}

.terms-link {
    color: blue;
    display: block;
    margin-bottom: 12px;
    user-select: none; /* evita selección de texto */
    -webkit-tap-highlight-color: transparent; /* elimina sombra en Android/iOS */
    outline: none; /* quita borde de enfoque */
}

.terms-link-without-underline {
    color: blue;
    display: block;
    margin-bottom: 12px;
    cursor: pointer;
    user-select: none; /* evita selección de texto */
    -webkit-tap-highlight-color: transparent; /* elimina sombra en Android/iOS */
    outline: none; /* quita borde de enfoque */
}

.spinner-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 5px;
}

.spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-left-color: var(--ct-brand-color);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 0.8s linear infinite;
}