.login-error-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 50vw;
    height: 50vh;
    transform: translate(-50%, -50%);
    background: #f8d7da;
    color: #721c24;
    border: 2px solid red;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 20px;
}

.login-error-content {
    position: relative;
    font-size: 20px;
    font-weight: bold;
}

.login-error-icon {
    font-size: 40px;
    display: block;
    margin-bottom: 10px;
}

.login-error-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 25px;
    font-weight: bold;
    cursor: pointer;
    color: #721c24;
}
