/* static/main/css/privacy_notice.css */

.privacy-notice-container {
    text-align: center;
    margin-top: 10px;    /* Небольшой отступ сверху */
    line-height: 1.4;
}

.privacy-text {
    font-size: 13px;       /* Твой стандартный размер для подсказок */
    color: #6b7280;        /* Твой серый цвет текста */
    margin: 0;
}

/* Выделяем слово-действие (например, "Получить код") жирным или цветом */
.privacy-text span {
    font-weight: 500;
    color: #4b5563;        /* Чуть темнее серого */
}

.privacy-link {
    color: #3b82f6;        /* Твой синий цвет (как у кнопок) */
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.2s;
}

.privacy-link:hover {
    text-decoration: underline;
    opacity: 0.9;
}