/* =================================================
   CSS CHO FORM ĐẶT LẠI MẬT KHẨU
================================================= */

.resetpw-container {
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: inherit;
}

.resetpw-card {
    width: 100%;
    max-width: 460px;
    background: #ffffff;
    padding: 45px 35px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid #f1f5f9;
    box-sizing: border-box;
}

.resetpw-header {
    text-align: center;
    margin-bottom: 30px;
}

.resetpw-icon {
    width: 68px;
    height: 68px;
    background: #eff6ff;
    color: #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.resetpw-icon svg { width: 32px; height: 32px; }

.resetpw-header h2 {
    margin: 0 0 12px;
    font-size: 26px;
    color: #0f172a;
    font-weight: 800;
}

.resetpw-header p {
    margin: 0;
    color: #64748b;
    font-size: 15px;
    line-height: 1.6;
}

.resetpw-msg {
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 25px;
    font-size: 14.5px;
    line-height: 1.5;
    text-align: center;
}

.resetpw-msg.error {
    background: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fecaca;
    font-weight: 500;
}

.resetpw-form-group { margin-bottom: 25px; }
.resetpw-form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
    color: #334155;
    font-size: 14px;
}

.resetpw-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.resetpw-input-wrapper input {
    width: 100%;
    padding: 16px 45px 16px 16px !important;
    border: 2px solid #e2e8f0 !important;
    border-radius: 12px !important;
    background: #f8fafc !important;
    font-size: 15px !important;
    color: #0f172a !important;
    transition: all 0.3s ease !important;
    box-sizing: border-box !important;
    height: auto !important;
}

.resetpw-input-wrapper input:focus {
    border-color: #3b82f6 !important;
    background: #ffffff !important;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15) !important;
    outline: none !important;
}

.toggle-pwd {
    position: absolute;
    right: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.toggle-pwd svg {
    width: 20px;
    height: 20px;
    color: #94a3b8;
    transition: all 0.2s ease;
}

.resetpw-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #ffffff !important;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
}

.resetpw-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}