.login-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    width: 300px;
    text-align: center;
}

.login-container h2 {
    margin-bottom: 20px;
}

input {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    width: 100%;
    padding: 10px;
    background: #007bff;
    border: none;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
}

button:hover {
    background: #0056b3;
}

.error {
    color: red;
    margin-top: 15px;
    display: none;
}

/* контейнер поля */
.field {
    position: relative;
    margin-bottom: 20px;
}

/* инпут с ошибкой */
.input-error {
    border: 2px solid #ff4d4f;
    background: #fff1f0;
}

/* тултип */
.tooltip {
    position: absolute;
    left: 0;
    bottom: +50px;

    background: #ff4d4f;
    color: white;
    font-size: 14px;
    padding: 6px 10px;
    border-radius: 6px;

    white-space: nowrap;

    opacity: 0;
    transform: translateY(-5px);
    transition: all 0.2s ease;

    pointer-events: none;
}

/* стрелка */
.tooltip::after {
    content: "";
    position: absolute;
    top: -5px;
    left: 10px;

    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent #ff4d4f transparent;
}

/* активное состояние */
.tooltip.visible {
    opacity: 1;
    transform: translateY(0);
}

.tabs {
    display: flex;
    margin-bottom: 20px;
}

.tabs button {
    flex: 1;
    padding: 10px;
    border: none;
    background: #C0C0C0;
    cursor: pointer;
    border-radius: 6px 6px 0 0;
}

.tabs button.active {
    background: #007bff;
    color: white;
}