body.page-template-page-login .blue_top,
body.page-template-page-login footer,
body.page-template-page-login .main-menu,
body.page-template-page-login .info-block {
    display: none !important;
}

.login-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    background: #f8f8f8;
    font-family: "Inter", sans-serif;
}

.login-form-wrapper {
    width: 100%;
    max-width: 410px;
    text-align: center;
}

.login-form-wrapper h2 {
    font-weight: 500;
    margin-bottom: 10px;
    font-family: Inter;
    font-weight: 300;
    font-size: 22.5px;
    line-height: 26px;
    text-align: center;
    vertical-align: middle;

}

.login-form-wrapper p.subtext {
    color: #555;
    margin-bottom: 30px;
    font-size: 14px;
    font-family: Inter;
    font-weight: 300;
    font-size: 13.3px;
    line-height: 18px;
    text-align: center;
    vertical-align: middle;

}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
}

.login-form label {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.login-form input[type="text"],
.login-form input[type="password"] {
    width: 100%;
    border: none;
    border-bottom: 1px solid #ccc;
    padding: 8px 4px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
}

.login-form input:focus {
    border-color: #000;
}

.login-form .forgot {
    text-align: right;
    font-size: 13px;
}

.login-form .forgot a {
    color: #666;
    text-decoration: none;
}

.login-form .forgot a:hover {
    text-decoration: underline;
}

.login-form input[type="submit"] {
    background: #d6e3ef;
    border: none;
    border-radius: 30px;
    padding: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    border: 1px solid #495A6F;
}

.login-form input[type="submit"]:hover {
    background: #c3d7eb;
}

.login-bottom {
    margin-top: 25px;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 13.3px;
    line-height: 18px;
    letter-spacing: 0;
    text-align: center;
    vertical-align: middle;
    color: #2a2a2a;
}

.login-bottom a {
    position: relative;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 13.3px;
    line-height: 18px;
    letter-spacing: 0;
    color: #000;
    text-decoration: none;
    margin-left: 4px;
}
.login-bottom a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px; /* отступ 3px от текста вниз */
    width: 100%;
    height: 1px;
    background-color: #000; /* цвет линии */
    transition: background-color 0.2s;
}

.login-bottom a:hover::after {
    background-color: #3a6df0; /* например, при наведении — синий оттенок */
}
.input-field {
    position: relative;
}

.input-field input[type="text"],
.input-field input[type="password"] {
    width: 100%;
    border: none;
    border-bottom: 1px solid #748398;
    padding: 8px 0;
    font-size: 14.8px;
    line-height: 100%;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-style: normal;
    letter-spacing: 0;
    color: #2a2a2a;
    background: transparent;
    outline: none;
    vertical-align: middle;
}

.input-field input::placeholder {
    color: #748398;
    font-size: 14.8px;
    font-weight: 300;
    font-family: 'Inter', sans-serif;
    line-height: 100%;
    letter-spacing: 0;
}
@media (max-width: 768px) {
    .login-page {
        padding: 17px;
    }
}
.login-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 20px;
}

.login-nav a {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 13.5px;
    letter-spacing: 0.3px;
    color: #2a2a2a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.login-nav a:hover {
    color: #000;
}
.subscribe-nav {
    display: flex;
    justify-content: center;
    align-items: center;
}
.subscribe-nav a {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 13.5px;
    letter-spacing: 0.3px;
    color: #2a2a2a;
    text-decoration: none;
    transition: color 0.2s
    ease;}