
   .reset-container {
        width: 100%;
        max-width: 480px;
        margin: 50px auto;
    }
    
    .reset-header {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .reset-header h1 {
        color: #2d3748;
        font-size: 2.2rem;
        margin-bottom: 10px;
    }
    
    .reset-header p {
        color: #718096;
        font-size: 1.1rem;
        line-height: 1.6;
    }
    
    .reset-form-container {
        background-color: white;
        border-radius: 16px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        padding: 40px 35px;
        transition: all 0.3s ease;
    }
    
    .reset-form-container:hover {
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    }
    
    .reset-form-group {
        margin-bottom: 25px;
        position: relative;
    }
    
    .reset-form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
        color: #4a5568;
        font-size: 1rem;
        transition: color 0.3s;
    }
    
    .reset-form-group label i {
        margin-left: 8px;
        width: 20px;
        text-align: center;
    }
    
    .reset-input-with-icon {
        position: relative;
    }
    
    .reset-input-with-icon i {
        position: absolute;
        right: 18px;
        top: 50%;
        transform: translateY(-50%);
        color: #a0aec0;
        transition: color 0.3s;
    }
    
    .reset-input-with-icon input {
        width: 100%;
        padding: 16px 52px 16px 20px;
        border: 2px solid #e2e8f0;
        border-radius: 12px;
        font-size: 1rem;
        transition: all 0.3s;
        background-color: #f8fafc;
        color: #2d3748;
        outline: none;
    }
    
    .reset-input-with-icon input:focus {
        border-color: #4299e1;
        background-color: #fff;
        box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.15);
    }
    
    .reset-input-with-icon input:focus + i {
        color: #4299e1;
    }
    
    .reset-submit-btn {
        background-color:#242424 ;
        color: white;
        border: none;
        padding: 18px;
        border-radius: 12px;
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        width: 100%;
        transition: all 0.3s;
        margin-top: 15px;
        box-shadow: 0 4px 12px rgba(66, 153, 225, 0.25);
    }
    
    .reset-submit-btn:hover {
        background: linear-gradient(135deg, #3182ce 0%, #2b6cb0 100%);
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(66, 153, 225, 0.35);
    }
    
    .reset-submit-btn:active {
        transform: translateY(0);
    }
    
    .reset-footer {
        text-align: center;
        margin-top: 25px;
        color: #718096;
        font-size: 0.95rem;
    }
    
    .reset-footer a {
        color: #4299e1;
        text-decoration: none;
        font-weight: 600;
        transition: color 0.3s;
    }
    
    .reset-footer a:hover {
        color: #2b6cb0;
        text-decoration: underline;
    }
    
    .reset-error-message {
        color: #e53e3e;
        font-size: 0.9rem;
        margin-top: 6px;
        display: flex;
        align-items: center;
        gap: 6px;
    }
    
    .reset-error-message i {
        font-size: 0.9rem;
    }
    
    .reset-success-message {
        background-color: #c6f6d5;
        color: #22543d;
        padding: 15px;
        border-radius: 10px;
        margin-bottom: 25px;
        display: flex;
        align-items: center;
        gap: 12px;
    }
    
    @media (max-width: 576px) {
        .reset-form-container {
            padding: 30px 25px;
        }
        
        .reset-header h1 {
            font-size: 1.8rem;
        }
        
        .reset-input-with-icon input {
            padding: 14px 48px 14px 16px;
        }
    }
    
    .reset-logo {
        display: flex;
        justify-content: center;
        margin-bottom: 20px;
    }
    
    .reset-logo-circle {
        width: 70px;
        height: 70px;
        background-color:#242424 ;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        color: white;
        font-size: 28px;
        box-shadow: 0 6px 15px rgba(66, 153, 225, 0.3);
    }
    
    /* تنسيقات خاصة لحقول Django */
    .reset-form-group input[type="email"] {
        width: 100%;
        padding: 16px 20px;
        border: 2px solid #e2e8f0;
        border-radius: 12px;
        font-size: 1rem;
        transition: all 0.3s;
        background-color: #f8fafc;
        color: #2d3748;
        outline: none;
    }
    
    .reset-form-group input[type="email"]:focus {
        border-color: #4299e1;
        background-color: #fff;
        box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.15);
    }
    
    /* تنسيق رسائل الخطأ */
    .reset-form-group .errorlist {
        list-style: none;
        padding: 0;
        margin: 8px 0 0 0;
        color: #e53e3e;
        font-size: 0.9rem;
    }
    
    .reset-form-group .errorlist li {
        display: flex;
        align-items: center;
        gap: 6px;
        margin-bottom: 5px;
    }