.elementor-6896 .elementor-element.elementor-element-57764d27{--display:flex;--margin-top:60px;--margin-bottom:40px;--margin-left:0px;--margin-right:0px;}.elementor-widget-text-editor{color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}:root{--page-title-display:none;}/* Start custom CSS *//* ===== SMSIR Login Form - Professional Styles ===== */

/* Container */
.smsir-login-container {
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
    padding: 2rem;
}

/* Logo Section */
.smsir-login-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.smsir-login-logo img {
    height: 4rem;
    width: auto;
    margin-bottom: 1rem;
}

/* Form */
.smsir-login-form {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Input Group */
.smsir-input-group {
    display: flex;
    flex-direction: column;
}

.smsir-input-label {
    color: #5B5C60;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 0.5rem;
    display: block;
}

/* Input Field */
.smsir-input-wrapper {
    position: relative;
}

.smsir-input-field {
    width: 100%;
    height: 3.5rem;
    padding: 0 1rem;
    border: 1px solid #e6e6e6;
    border-radius: 1.5rem;
    font-size: 14px;
    text-align: left;
    direction: ltr;
    transition: all 0.3s ease;
    background: #fff;
    outline: none;
}

.smsir-input-field::placeholder {
    color: #9CA3AF;
    font-size: 14px;
}

.smsir-input-field:focus {
    border-color: #FFD700;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.smsir-input-field:hover {
    border-color: #d4d4d4;
}

/* Primary Button (دریافت کد) */
.smsir-btn-primary {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.75rem 1.5rem;
    border: 1px solid transparent;
    font-size: 16px;
    font-weight: 500;
    border-radius: 9999px;
    color: #0D0D0D;
    background: #FFD700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 2rem;
    outline: none;
}

.smsir-btn-primary:hover:not(:disabled) {
    background: #FFC700;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.smsir-btn-primary:active:not(:disabled) {
    transform: translateY(0);
}

.smsir-btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Secondary Button (ورود با رمز عبور) */
.smsir-btn-secondary {
    width: 100%;
    padding: 0.75rem 1.5rem;
    border: none;
    font-size: 16px;
    font-weight: 400;
    border-radius: 9999px;
    color: #0D0D0D;
    background: #F2F2F2;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
    outline: none;
    text-align: center;
}

.smsir-btn-secondary:hover {
    background: #E5E5E5;
    transform: translateY(-1px);
}

.smsir-btn-secondary:active {
    transform: translateY(0);
}

/* Loading State */
.smsir-btn-loading {
    position: relative;
    pointer-events: none;
}

.smsir-btn-loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid #0D0D0D;
    border-radius: 50%;
    border-top-color: transparent;
    animation: smsir-spin 0.6s linear infinite;
}

@keyframes smsir-spin {
    to { transform: rotate(360deg); }
}

/* Error Message */
.smsir-error-message {
    color: #EF4444;
    font-size: 13px;
    margin-top: 0.5rem;
    display: none;
}

.smsir-error-message.active {
    display: block;
}

/* Success Message */
.smsir-success-message {
    color: #10B981;
    font-size: 13px;
    margin-top: 0.5rem;
    display: none;
}

.smsir-success-message.active {
    display: block;
}

/* Responsive Design */
@media (max-width: 640px) {
    .smsir-login-container {
        padding: 1.5rem;
    }
    
    .smsir-login-logo img {
        height: 3rem;
    }
    
    .smsir-input-field {
        height: 3rem;
        font-size: 13px;
    }
    
    .smsir-btn-primary,
    .smsir-btn-secondary {
        font-size: 15px;
        padding: 0.65rem 1.25rem;
    }
}

@media (max-width: 380px) {
    .smsir-login-container {
        padding: 1rem;
    }
    
    .smsir-input-field {
        height: 2.75rem;
    }
}

/* RTL Support */
[dir="rtl"] .smsir-input-field {
    text-align: right;
    direction: rtl;
}

/* Dark Mode Support (Optional) */
@media (prefers-color-scheme: dark) {
    .smsir-input-field {
        background: #1F2937;
        border-color: #374151;
        color: #F9FAFB;
    }
    
    .smsir-input-field::placeholder {
        color: #6B7280;
    }
    
    .smsir-input-label {
        color: #D1D5DB;
    }
    
    .smsir-btn-secondary {
        background: #374151;
        color: #F9FAFB;
    }
    
    .smsir-btn-secondary:hover {
        background: #4B5563;
    }
}/* End custom CSS */