/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.body-forgotpass {
    background: #f7f9fc;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    flex-direction: column;
}

.logo-mcit {
    display: flex;
    justify-content: center;
}

.logo-mcit img {
    width: 300px;
    margin-bottom: 20px;
    /* display: flexbox;
    align-items: center; */
}

.card-forgotpass {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 2px 2px 8px rgba(0,0,0,0.1);
    width: 400px;
    text-align: left;
    border-top: 3px solid #d61c4e;
}

.title-forgotpass {
    color: #d61c4e;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.subtitle-forgotpass {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 20px;
}

.card-forgotpass label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
    color: #d61c4e;
}

input[type="email"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #e5e7eb;
    border-radius: 5px;
    margin-bottom: 15px;
    outline: none;
    transition: 0.3s;
}

input[type="email"]:focus {
    border-color: #d61c4e;
}

.card-forgotpass .password-field {
    position: relative;
    width: 100%;
    margin-bottom: 15px;
}

.card-forgotpass .password-field input[type="password"],
.card-forgotpass .password-field input[type="text"] {
    width: 100%;
    padding: 10px 42px 10px 10px;
    border: 1px solid #e5e7eb;
    border-radius: 5px;
    margin-bottom: 0;
    outline: none;
    transition: 0.3s;
}

.card-forgotpass .password-field input[type="password"]:focus,
.card-forgotpass .password-field input[type="text"]:focus {
    border-color: #d61c4e;
}

.card-forgotpass .password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    border: 0;
    background: transparent;
    color: #6c757d;
    padding: 0;
    line-height: 1;
    cursor: pointer;
}

.password-rules-card {
    margin-top: 2px;
    margin-bottom: 15px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #fafafa;
    padding: 12px;
}

.password-rules-title {
    margin: 0 0 8px 0;
    color: #374151;
    font-size: 13px;
    font-weight: 600;
}

.password-rules-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.password-rule-item {
    font-size: 13px;
    color: #b91c1c;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.password-rule-item:last-child {
    margin-bottom: 0;
}

.password-rule-item .rule-icon {
    width: 14px;
    text-align: center;
    font-weight: 700;
    color: #b91c1c;
}

.password-rule-item.is-valid {
    color: #15803d;
}

.password-rule-item.is-valid .rule-icon {
    color: #16a34a;
}

.btn-forgotpass {
    width: 100%;
    padding: 12px;
    border: none;
    background: #d61c4e;
    color: white;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-forgotpass:hover {
    background: #b1143d;
}

.success {
    background: #4ade80;
    color: white;
    padding: 12px;
    border-radius: 5px;
    font-size: 14px;
    margin-bottom: 15px;
}

.hidden {
    display: none;
}

.footer-forgotpass {
    display: flex;
    justify-content: center;
    align-items: end;
}

footer {
    /* margin-top: 200px; */
    margin-bottom: -180px;
    font-size: 13px;
    color: #6b7280;
}
