/* Основная кнопка */
.btn-auth {
    position: absolute;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    padding: 10px 20px;
    height: 44px;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    z-index: 99999;
    right: 100px;
    top: 20px;
}

/* Фон модального окна личного кабинета */
.auth-overlay {
    display: none; 
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 100000;
    justify-content: center;
    align-items: center;
}

/* Контент окна личного кабинета */
.auth-content {
    background: #f4f4f4;
    padding: 30px;
    border-radius: 15px;
    border: 2px solid #ff9d00;
    width: 100%;
    max-width: 400px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

/* Кнопка закрытия в личном кабинете */
.auth-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    cursor: pointer;
    color: #333;
}