.login-branding {
    text-align: center;
    margin-bottom: 20px;
    /* Добавляем небольшой отступ снизу */
}

svg {
    width: 12%;
    display: block;
    max-width: 100%;
    height: auto;
}

.login-form {
    width: 300px;
    /* Ширина блока формы входа */
    margin: 0 auto;
    /* Размещаем блок по центру горизонтально */
    padding: 20px;
    /* Добавляем внутренние отступы для блока формы */
    border: 1px solid #ccc;
    /* Добавляем рамку вокруг блока формы */
    border-radius: 5px;
    /* Закругляем углы блока */
    background-color: #f9f9f9;
    /* Цвет фона блока формы */
}

label {
    margin-bottom: 10px;

}

.login-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;

    border-bottom: 1px solid;
    border-color: #dddddd;
}

.login-username {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.login-password {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Стили для контейнера */
.login-container {
    display: flex;
    /* Используем flexbox */
    justify-content: center;
    /* Выравниваем содержимое по горизонтали по центру */
    align-items: center;
    /* Выравниваем содержимое по вертикали по центру */
    height: 100vh;
    /* Задаем высоту контейнера на всю высоту видимой области экрана */
}

/* Стили для блока формы */
#wp-submit {
    /* padding: 20px 0px 20px 0px; */
    position: relative;
    text-align: center;
    /* border-radius: 10px; */
    width: 400px;
    margin: auto;
    /* margin-top: 60px; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 3px;
    width: 100%;
    height: 44px;
    color: #ffffff;
    background-color: #3590ca;
    font-size: 18px;
    /* font-family: Lato; */
    font-weight: 400;
}

.login-submit {
    margin-top: 35px;
    margin-bottom: 0;
}

.login-form {
    position: relative;
    border: solid 1px #c6c6c6;
    box-shadow: 0 0 10px #d3d3d3;
    border-radius: 10px;
    width: 350px;
    margin: auto;
    display: flex;
    flex-direction: column;
    margin-top: 40px;
}

#wp-submit:hover {
    border: solid 0;
    box-shadow: 0 0 10px #0570fb;
    cursor: pointer;
}

.login-remember {
    display: flex;
    justify-content: flex-start;

}

#rememberme {
    display: flex;
    justify-content: flex-start;

}

input[type="checkbox"] {
    display: flex;
    justify-content: flex-start;

}

label {
    display: flex;
    justify-content: flex-start;
}
.login-close-btn{
    display: flex;
    justify-content: flex-end;
}
.login-close-btn svg{
    width: 9%;
    background: #3590ca;
    border-radius: 7px;
}
.login-msg{
    background: #dc3545;
    padding: 10px;
    color: azure;
    /* border-radius: 7px; */
}
.login-close-btn svg:hover{
    border: solid 0;
    box-shadow: 0 0 10px #0570fb;
    cursor: pointer;
}
input {
    text-align: left;
    padding: 12px 10px 12px 12px;
    box-sizing: border-box;
    font-size: 16px;
    outline: 0;
    border: 1px solid #ccc;
    border-radius: 0;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    width: 100%;
}

.user-greeting {
    font-family: Arial, sans-serif;
    font-size: 14px;
    margin-bottom: 10px;
}

.user-name {
    font-weight: bold;
    color: #333;
}

.logout-link {
    color: #007bff;
    text-decoration: none;
    margin-left: 10px;
}

.logout-link:hover {
    text-decoration: underline;
}