.reset-card {
    width: 100%;
    box-sizing: border-box;
    margin-top: 60px;
    background: #fff;
    border: 1px solid #E6EBF2;
    border-radius: 6px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
}
.reset-card__head {
    margin-bottom: 20px;
}
.reset-card__title {
    margin: 0;
    color: #0C2532;
    font-size: 24px;
    font-weight: 700;
}
.reset-card__subtitle {
    margin: 5px 0 0;
    color: #878996;
    font-size: 14px;
    font-weight: 400;
}
.reset-note {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    background: rgba(2, 107, 255, 0.05);
    border: 1px solid rgba(2, 107, 255, 0.12);
    color: #415565;
    font-size: 14px;
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 20px;
}
.reset-note__icon {
    color: #026BFF;
    font-size: 15px;
    margin-top: 2px;
    flex-shrink: 0;
}
.reset-note strong {
    color: #0C2532;
    font-weight: 600;
    unicode-bidi: isolate;
    word-break: normal;
    overflow-wrap: break-word;
}
.reset-field {
    margin-bottom: 25px;
}
.reset-label {
    display: block;
    margin-bottom: 10px;
    color: #0C2532;
    font-size: 14px;
    font-weight: 600;
}
.reset-input-wrap {
    position: relative;
}
.reset-input-wrap .reset-input-icon {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 15px;
    display: flex;
    align-items: center;
    color: #98A2B3;
    font-size: 15px;
    pointer-events: none;
}
.reset-input {
    width: 100%;
    height: 48px;
    box-sizing: border-box;
    border: 1px solid #E6EBF2;
    border-radius: 4px;
    padding: 0 45px;
    font-size: 14px;
    color: #0C2532;
    background: #fff;
    outline: none;
    transition: 0.3s;
    -webkit-appearance: none;
    appearance: none;
}
.reset-input::placeholder {
    color: #98A2B3;
}
.reset-input:focus {
    border-color: #026BFF;
}
.reset-input:disabled,
.reset-input-wrap.is-disabled .reset-input {
    background: rgba(229, 232, 238, 0.32);
    color: #878996;
    cursor: not-allowed;
    border-color: #E6EBF2;
}
.reset-input-toggle {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 15px;
    display: flex;
    align-items: center;
    padding: 0;
    border: 0;
    background: none;
    cursor: pointer;
    color: #98A2B3;
    font-size: 15px;
    transition: 0.3s;
}
.reset-input-toggle:hover {
    color: #026BFF;
}
.reset-error {
    margin-top: 5px;
    color: #EB2121;
    font-size: 12px;
}
.reset-btn {
    width: 100%;
    height: 60px;
    margin-top: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 2px;
    cursor: pointer;
    background: linear-gradient(90deg, #026BFF 0%, #005AD9 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s;
}
.reset-btn:hover {
    background: linear-gradient(90deg, rgb(16, 115, 254) 0%, rgb(2, 107, 255) 85%, rgb(0, 90, 217) 100%);
}
.reset-card__title,
.reset-card__subtitle,
.reset-label,
.reset-note { text-align: left; }

[dir=rtl] .reset-card__title,
[dir=rtl] .reset-card__subtitle,
[dir=rtl] .reset-label,
[dir=rtl] .reset-note { text-align: right; }

[dir=rtl] .reset-input-wrap .reset-input-icon {
    left: auto;
    right: 15px;
}
[dir=rtl] .reset-input-toggle {
    right: auto;
    left: 15px;
}
[dir=rtl] .Sucmessage,
[dir=rtl] .Errormessage,
[dir=rtl] .Notemessage {
    padding: 15px 50px 15px 15px;
    background-position: right 15px top 10px;
    margin-inline: 20px !important;
}

.reset-logo {
    margin-bottom: 22px;
    text-align: left;
}
[dir=rtl] .reset-logo {
    text-align: right;
}
.reset-logo img {
    max-width: 180px;
    max-height: 64px;
    object-fit: contain;
}
.reset-logo__name {
    display: inline-block;
    color: #0C2532;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
}
.reset-card__title { color: #0C2532 !important; }
.reset-card__subtitle { color: #878996 !important; }
.reset-label { color: #0C2532 !important; }
.reset-footer-links {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    gap: 10px;
}
.reset-footer-links a {
    color: #026BFF;
    font-size: 14px;
    text-decoration: none;
    transition: 0.2s;
}
.reset-footer-links a:hover {
    text-decoration: underline;
}
body.login {
    padding-top: 48px;
}
body.login .container.w-xxl {
    width: 100%;
    max-width: 440px;
}
body.login .reset-card {
    margin-top: 0;
}
.Notemessage, .Errormessage, .Sucmessage {
    margin-inline: 20px !important;
}
@media (max-width: 575px) {
    .reset-card {
        margin-top: 30px;
        padding: 20px;
        box-shadow: unset;
        border: unset;
    }
    .reset-card__title {
        font-size: 20px;
    }
    body.login {
        padding-top: 28px;
    }
    body.login .container.w-xxl {
        padding-left: 0px;
        padding-right: 0px;
    }
}
