.forgot-head {
    margin: 14px 0 18px;
    text-align: center;
}

.forgot-head h1 {
    margin: 0 0 4px;

    font-size: 24px;
    line-height: 1.2;
    font-weight: 700;

    color: #111827;
}

.forgot-head p {
    margin: 0;

    font-size: 12px;
    line-height: 1.4;

    color: #6b7280;
}


/* FORM */

.forgot-form {
    width: 100%;
    margin: 0;
}

.forgot-field {
    margin-bottom: 14px;
}

.forgot-field label {
    display: block;

    margin: 0 0 5px;

    font-size: 12px;
    line-height: 1.3;
    font-weight: 600;

    color: #374151;
}


/* INPUT */

.forgot-input {
    display: flex;
    align-items: center;

    width: 100%;
    height: 42px;

    overflow: hidden;

    border: 1px solid #d1d5db;
    border-radius: 9px;

    background: #ffffff;

    box-sizing: border-box;

    transition:
        border-color .15s ease,
        box-shadow .15s ease;
}

.forgot-input:hover {
    border-color: #9ca3af;
}

.forgot-input:focus-within {
    border-color: #111827;
    box-shadow: 0 0 0 3px rgba(17, 24, 39, .06);
}

.forgot-input__icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    min-width: 42px;
    height: 100%;
}

.forgot-input__icon svg {
    width: 18px;
    height: 18px;
}

.forgot-input input {
    display: block;

    width: 100%;
    height: 100%;

    padding: 0 12px 0 0;

    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;

    background: transparent !important;

    font-size: 13px;
    color: #111827;
}

.forgot-input input::placeholder {
    color: #9ca3af;
}


/* ERROR */

.forgot-error {
    margin-top: 4px;

    font-size: 11px;
    line-height: 1.35;

    color: #dc2626;
}


/* SUBMIT */

.forgot-submit {
    display: block;

    width: 100%;
    height: 42px;

    padding: 0;

    border: 0;
    border-radius: 9px;

    background: #111827;

    color: #fff;

    font-size: 13px;
    font-weight: 600;

    cursor: pointer;

    transition:
        background .15s ease,
        transform .15s ease;
}

.forgot-submit:hover {
    background: #000;
}

.forgot-submit:active {
    transform: translateY(1px);
}


/* BACK */

.forgot-back {
    margin-top: 14px;
    text-align: center;
}

.forgot-back a {
    font-size: 12px;
    font-weight: 500;

    color: #6b7280;
    text-decoration: none;
}

.forgot-back a:hover {
    color: #111827;
}


/* SUCCESS */

.forgot-success {
    width: 100%;
    text-align: center;
}

.forgot-success__icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    margin: 0 auto 12px;

    border-radius: 50%;

    background: #f0fdf4;

    color: #15803d;

    font-size: 20px;
    font-weight: 700;
}

.forgot-success__title {
    margin-bottom: 5px;

    font-size: 14px;
    font-weight: 600;

    color: #111827;
}

.forgot-success__text {
    margin-bottom: 16px;

    font-size: 12px;
    line-height: 1.5;

    color: #6b7280;
}

.forgot-back-button {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 42px;

    border-radius: 9px;

    background: #111827;

    color: #fff !important;

    font-size: 13px;
    font-weight: 600;

    text-decoration: none !important;

    transition: background .15s ease;
}

.forgot-back-button:hover {
    background: #000;
}