﻿.login-dialog {
    border-radius: 12px !important;
    width: 328px !important;
    background-color: rgba(52, 58, 64, 0.8) !important;
    margin-top: 50% !important;
    padding: 24px;
}

.warning-modal {
    width: 280px;
    position: fixed;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1050;
    background: rgba(52, 58, 64, 1);
    color: white;
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 1);
}

    .warning-modal p {
        font-size: 12px;
        margin-bottom: 12px;
    }

.warning_modal-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1049;
    pointer-events: auto;
}

.warning_modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 16px;
    font-size: 14px;
}

    .warning_modal-actions span {
        transition: all 0.2s ease-in-out;
        cursor: pointer;
        padding: 5px 10px;
        border-radius: 5px;
    }

        .warning_modal-actions span:hover {
            text-shadow: 0px 0px 10px rgba(255, 204, 0, 0.8);
            background-color: rgba(255, 255, 255, 0.05);
        }

.warning_modal-continue-editing {
    color: #f0b90b;
    cursor: pointer;
}

.warning_modal-quit {
    color: #d9534f;
    cursor: pointer;
}

.forgot-password {
    display: inline-block;
    margin-top: 6px;
    margin-left: 4px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 193, 7, 1);
    text-decoration: none;
    cursor: pointer;
}

    .forgot-password:hover,
    .forgot-password:focus,
    .forgot-password:active {
        color: rgba(255, 204, 0, 0.8);
        text-decoration: none;
        outline: none;
    }