.custom-alert {
    padding: 5px; /* Padding от всички страни */
    max-width: 350px; /* Максимална ширина на кутийката */
    margin: 20px auto 0 auto; /* Центриране и повече отстояние отгоре */
    position: relative; /* За позициониране на бутона за затваряне */
    background-color: transparent; /* Прозрачен фон */
    color: #e3e496; /* Текст в зелен цвят */
    border-radius: 5px; /* Закръглени ъгли */
    text-align: center; /* Центриране на текста */
    display: flex; /* Използване на Flexbox */
    justify-content: center; /* Хоризонтално центриране */
    align-items: center; /* Вертикално центриране */
}

.custom-alert .custom-close {
    position: absolute;
    top: 10px; /* Позициониране на бутона за затваряне */
    right: 10px; /* Отстояние от десния край */
    background: none;
    border: none;
    font-size: 18px;
    font-weight: bold;
    color: #e3e496;
    cursor: pointer;
    outline: none;
}

.remember {
    font-size: 15px;
    padding: 10px 10px 10px 0;
    color: #999;
}

input[type="checkbox"] {
    width: 16px;
    height: 16px;
    border: 1px solid #ccc;
    cursor: pointer;
    margin-right: 6px;
}