* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.header {
    position: absolute;
    top: 0;
    width: 100%;
    background-color: #0072c6;
    color: #fff;
    display: flex;
    align-items: center;
	font-size: x-large;
    padding: 10px 20px;
    height: 75px;
}

.logo {
    width: 40px;
    margin-right: 10px;
}

body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f5f5f5;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.password-form {
    background-color: #0072c6;
    padding: 20px 30px;
    border-radius: 2px;
    width: 415px; /* Увеличиваем ширину контейнера */
    color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
}

.password-form h2 {
    text-align: left;
    margin-bottom: 20px;
    font-size: 18px;
}

.input-group {
    position: relative;
    margin-bottom: 15px;
}

.input-group input {
    width: calc(100% - 60px); /* Уменьшаем ширину поля, чтобы оставить место для кнопки */
    padding: 10px 10px 10px 40px;
    font-size: 14px;
    border-radius: 5px;
    border: none;
}

.icon {
    position: absolute;
    top: 5px;
    left: 6px;
    font-size: 16px;
    filter: invert(43%) sepia(55%) saturate(10000%) hue-rotate(178deg) brightness(90%) contrast(120%);
}

.eye-icon {
    position: absolute;
    top: 10px;
    right: 69px; /* Оставляем место для кнопки справа */
    font-size: 16px;
    cursor: pointer;
    filter: invert(43%) sepia(55%) saturate(10000%) hue-rotate(178deg) brightness(90%) contrast(120%);
}

.round-button {
    position: absolute;
    right: 35px; /* Отступ справа для более точного позиционирования */
    top: 145px; /* Позиционируем кнопку между полями */
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 18px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0.5;
    transition: background-color 0.3s;
}

.round-button:hover {
    background-color: rgba(255, 255, 255, 0.3);
    opacity: 1;
}

.error-message-container {
    display: flex;
    align-items: center;
    background-color: #ffcccc;
    color: #d8000c;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 15px;
}

.error-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.modal {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Полупрозрачный фон */
    z-index: 1000; /* Поверх всего контента */
}

.modal-content {
    background-color: #0072c6;
    padding: 20px 30px;
    border-radius: 6px;
    width: 300px;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    text-align: center;
    position: relative;
}

.modal-content h2 {
    font-size: 18px;
    margin-bottom: 10px;
}

.close-button {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    color: white;
    cursor: pointer;
}