.errors_modal
{
    position: fixed;
    width: 320px;
    max-height: 85vh;
    overflow-y: auto;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    padding: 1.5rem;
    border-radius: 16px;
    border: solid 1px rgba(255, 255, 255, 0.1);
    background: #0f1420;
    color: #e8edf6;
    z-index: 50000000;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}
.errors_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);
    z-index: 49999999;
}

.errors_overlay_hidden {
    display: none;
}
.errors_modal h2
{
    font-size: 1.8rem;
    font-weight: bold;
    color: #ffffff;
}

.errors_modal h3
{
    padding-top: 0.6rem;
    font-size: 14px;
    color: #b9c4d7;
}

.errors_modal p
{
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
    font-size: 16px;
    color: #b9c4d7;
}
.errors_modal button
{
    margin-top: 20px;
    position: relative;
    outline: none;
    border-radius: 25px;
    width: 100%;
    border: none;
    background: var(--color-emerald-400);
    color: #ffffff;
    padding: 15px;
    overflow: hidden;
    display: inline-block;
    min-height: 30px;
    font-size: 1.1em;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.2s;
}

.errors_modal button:hover
{
    opacity: 0.85;
}

.errors_modal_hidden {
    display: none !important;
    visibility: hidden !important;
}
