.elementor-14 .elementor-element.elementor-element-e183374{--display:flex;--padding-top:100px;--padding-bottom:100px;--padding-left:10px;--padding-right:10px;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-14 .elementor-element.elementor-element-10b0adb{text-align:center;}.elementor-widget-button .elementor-button{background-color:var( --e-global-color-accent );font-family:var( --e-global-typography-accent-font-family ), Sans-serif;font-weight:var( --e-global-typography-accent-font-weight );}.elementor-14 .elementor-element.elementor-element-586e1d7 .elementor-button:hover, .elementor-14 .elementor-element.elementor-element-586e1d7 .elementor-button:focus{background-color:var( --e-global-color-primary );}.elementor-14 .elementor-element.elementor-element-586e1d7 .elementor-button{font-family:"IBM Plex Sans Arabic", Sans-serif;font-size:20px;font-weight:600;text-transform:capitalize;padding:20px 40px 20px 40px;}/* Start custom CSS for shortcode, class: .elementor-element-8e96d99 */.cl-login-wrapper {
    width: 100%;
    max-width: 450px;
    animation: fadeInUp 0.8s ease-out;
        margin: auto;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cl-login-box {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 35px;
    box-shadow: 0 20px 60px rgba(162, 50, 49, 0.3);
    position: relative;
    overflow: hidden;
}

.cl-login-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #A23231, #C64241, #A23231);
    background-size: 200% 100%;
    animation: gradientMove 3s ease infinite;
}

@keyframes gradientMove {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.cl-logo {
    text-align: center;
    margin-bottom: 25px;
}

.cl-logo img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(162, 50, 49, 0.2));
    transition: transform 0.3s ease;
}

.cl-logo img:hover {
    transform: scale(1.1) rotate(5deg);
}

.cl-title {
    text-align: center;
    color: #2c3e50;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.cl-subtitle {
    text-align: center;
    color: #7f8c8d;
    font-size: 14px;
    margin-bottom: 30px;
    font-weight: 400;
}

.cl-login-form label {
    display: block;
    color: #34495e;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    margin-top: 18px;
}

.cl-login-form input[type="text"],
.cl-login-form input[type="password"] {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e8ecef;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s ease;
    font-family: 'Cairo', sans-serif;
    background: #f8f9fa;
}

.cl-login-form input[type="text"]:focus,
.cl-login-form input[type="password"]:focus {
    outline: none;
    border-color: #A23231;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(162, 50, 49, 0.1);
}

.cl-password-wrapper {
    position: relative;
}

.cl-toggle-password {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.cl-toggle-password:hover {
    opacity: 0.7;
}

.cl-toggle-password img {
    width: 22px;
    height: 22px;
}

.cl-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0 25px;
    font-size: 14px;
}

.cl-options .remember {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #5a6c7d;
    cursor: pointer;
    user-select: none;
}

.cl-options input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #A23231;
}

.cl-options .forgot {
    color: #A23231;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.cl-options .forgot::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #A23231;
    transition: width 0.3s ease;
}

.cl-options .forgot:hover::after {
    width: 100%;
}

.cl-options .forgot:hover {
    color: #8B2827;
}

.cl-login-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #A23231, #C64241);
    color: white !important;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(162, 50, 49, 0.3);
    font-family: 'Cairo', sans-serif;
    letter-spacing: 0.5px;
}

.cl-login-btn:hover {
    background: linear-gradient(135deg, #8B2827, #A23231);
    box-shadow: 0 6px 25px rgba(162, 50, 49, 0.4);
    transform: translateY(-2px);
}

.cl-login-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(162, 50, 49, 0.3);
}

/* تحسينات للشاشات الصغيرة */
@media (max-width: 480px) {
    .cl-login-box {
        padding: 30px 25px;
    }
    
    .cl-title {
        font-size: 24px;
    }
    
    .cl-subtitle {
        font-size: 13px;
    }
}

/* إضافة تأثير loading عند الضغط على زر تسجيل الدخول */
.cl-login-btn.loading {
    position: relative;
    color: transparent;
    pointer-events: none;
}

.cl-login-btn.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}/* End custom CSS */