/* === RESET MODAL QURVEY STYLE === */

.reset-wrapper {
    background: transparent;
    box-shadow: none;
    padding: 0;
    margin: 0 auto;
    text-align: center;
    width: 100%;
    max-width: 360px;
    font-family: "Montserrat", "Roboto", sans-serif;
}

.reset-title {
    display: none;
    /* скрываем внутренний заголовок, т.к. внешний уже есть */
}

.reset-desc {
    font-size: 15px;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.4;
}

.reset-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 14px;
    padding: 25px 30px;
    box-shadow: 0 6px 20px rgba(0, 87, 183, 0.15);
}

.reset-input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid rgba(0, 87, 183, 0.25);
    font-size: 15px;
    outline: none;
    transition: 0.2s;
}

.reset-input:focus {
    border-color: #0057b7;
    box-shadow: 0 0 0 2px rgba(0, 87, 183, 0.2);
}

.reset-btn {
    background: linear-gradient(90deg, #0057b7, #00449c);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 12px;
    font-weight: 600;
    cursor: pointer;
    font-size: 15px;
    transition: all 0.3s ease;
}

.reset-btn:hover {
    background: linear-gradient(90deg, #00449c, #003a8a);
    transform: translateY(-1px);
}

.reset-msg {
    font-size: 14px;
    margin-top: 10px;
    text-align: center;
    min-height: 18px;
}

.reset-msg.success {
    color: #007a33;
}

.reset-msg.error {
    color: #b00020;
}

.reset-links {
    text-align: center;
    margin-top: 12px;
    font-size: 14px;
    color: #333;
}

.reset-links a {
    color: #0057b7;
    text-decoration: none;
    transition: 0.2s;
}

.reset-links a:hover {
    text-decoration: underline;
    color: #00449c;
}

/* Убрать Register внутри формы логина в модалке */
#loginModal form a[href*="register"],
#wpuf-login-form a[href*="register"],
.wpuf-login-form a[href*="register"] {
    display: none !important;
}

/* На случай если плагин кладёт это в <p> после кнопки */
#loginModal form .wpuf-login-form p:has(a[href*="register"]) {
    display: none !important;
}