﻿/* استایل‌های عمومی با پیشوند ACO برای Layout */
.ACO-body {
    font-family: 'Vazir', Tahoma, sans-serif;
    background: linear-gradient(135deg, #f6f9fc 0%, #e7eff9 100%);
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #2c3e50;
}

.ACO-my-container {
    width: 100%;
    max-width: 1200px;
    padding: 15px;
}

.ACO-container-form {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.ACO-wrap-account {
    width: 100%;
    max-width: 1000px;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* استایل‌های صفحه لاگین با پیشوند ALG */
.ALG-main-row {
    margin: 0;
    display: flex;
    flex-direction: row;
    min-height: 550px;
}

.ALG-wrap-account-pic {
    background-image: url('../img/site/login.jpg');
    background-size: cover;
    background-position: center;
    display: none;
    flex: 1;
    border-radius: 16px 0 0 16px;
}

.ALG-account-form {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.ALG-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    gap: 15px;
    text-align: center;
}

.ALG-account-form-title {
    font-family: 'Yekan', sans-serif;
    color: #2c3e50;
    font-size: 24px;
    font-weight: bold;
    margin: 0;
}

.ALG-home-button {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7f8c8d;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
    padding: 8px 16px;
    border: 1px solid #e6e9ed;
    border-radius: 8px;
    width: fit-content;
}

    .ALG-home-button:hover {
        color: #3498db;
        border-color: #3498db;
        background-color: #f8f9fa;
    }

.ALG-form-container {
    margin-top: 15px;
}

.ALG-form-group {
    margin-bottom: 20px;
}

.ALG-control-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
    font-family: 'Vazir', sans-serif;
    font-size: 14px;
}

.ALG-input-account {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e6e9ed;
    border-radius: 10px;
    font-size: 15px;
    font-family: 'Vazir', sans-serif;
    transition: all 0.3s;
    box-sizing: border-box;
    background-color: #f8f9fa;
}

    .ALG-input-account:focus {
        outline: none;
        border-color: #3498db;
        box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
        background-color: #fff;
    }

.ALG-text-danger {
    color: #e74c3c;
    font-size: 13px;
    margin-top: 6px;
    display: block;
    min-height: 18px;
    font-family: 'Vazir', sans-serif;
}

.ALG-form-check {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    font-family: 'Vazir', sans-serif;
}

.ALG-form-check-input {
    margin-left: 8px;
    width: 18px;
    height: 18px;
    accent-color: #3498db;
}

.ALG-buttons-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}

.ALG-account-Button {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Vazir', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.ALG-btn-login {
    background: linear-gradient(135deg, #3498db 0%, #2c81ba 100%);
    color: white;
    box-shadow: 0 3px 8px rgba(52, 152, 219, 0.25);
}

    .ALG-btn-login:hover {
        background: linear-gradient(135deg, #2c81ba 0%, #3498db 100%);
        transform: translateY(-2px);
        box-shadow: 0 5px 12px rgba(52, 152, 219, 0.35);
    }

.ALG-account-Forget-Button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 14px;
    font-family: 'Vazir', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: white;
    text-decoration: none !important;
    transition: all 0.3s;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    box-shadow: 0 3px 8px rgba(243, 156, 18, 0.25);
    cursor: pointer;
    width: 100%;
    text-align: center;
}

    .ALG-account-Forget-Button:hover {
        background: linear-gradient(135deg, #e67e22 0%, #f39c12 100%);
        transform: translateY(-2px);
        box-shadow: 0 5px 12px rgba(243, 156, 18, 0.35);
        color: white;
    }

.ALG-account-Re-Button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 14px;
    font-family: 'Vazir', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: white;
    text-decoration: none !important;
    transition: all 0.3s;
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(46, 204, 113, 0.25);
}

    .ALG-account-Re-Button:hover {
        background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
        transform: translateY(-2px);
        box-shadow: 0 5px 12px rgba(46, 204, 113, 0.35);
        color: white;
    }

.ALG-fa-warning {
    color: #e74c3c;
    margin-left: 4px;
}

.ALG-focused .ALG-control-label {
    color: #3498db;
}

/* رسپانسیو برای دستگاه‌های مختلف */
@media (min-width: 992px) {
    .ALG-wrap-account-pic {
        display: block;
    }

    .ALG-header {
        flex-direction: row;
        justify-content: space-between;
        text-align: right;
    }
}

@media (max-width: 991px) {
    .ALG-main-row {
        flex-direction: column;
        min-height: auto;
    }

    .ALG-wrap-account-pic {
        display: block;
        height: 200px;
        border-radius: 16px 16px 0 0;
    }

    .ALG-account-form {
        padding: 25px 20px;
    }
}

@media (max-width: 767px) {
    .ALG-account-form {
        padding: 20px;
    }

    .ALG-account-form-title {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .ACO-my-container {
        padding: 10px;
    }

    .ACO-wrap-account {
        border-radius: 12px;
    }

    .ALG-account-form {
        padding: 20px 15px;
    }

    .ALG-account-form-title {
        font-size: 20px;
    }

    .ALG-home-button {
        font-size: 12px;
        padding: 6px 12px;
    }

    .ALG-form-group {
        margin-bottom: 18px;
    }

    .ALG-control-label {
        font-size: 13px;
    }

    .ALG-input-account {
        padding: 12px;
        font-size: 14px;
    }

    .ALG-form-check {
        margin-bottom: 20px;
    }

    .ALG-form-check-input {
        width: 16px;
        height: 16px;
    }

    .ALG-buttons-container {
        gap: 10px;
    }

    .ALG-account-Button,
    .ALG-account-Forget-Button,
    .ALG-account-Re-Button {
        padding: 12px;
        font-size: 14px;
    }
}

@media (max-width: 360px) {
    .ALG-account-form {
        padding: 15px 12px;
    }

    .ALG-account-form-title {
        font-size: 18px;
    }

    .ALG-home-button {
        font-size: 11px;
        padding: 5px 10px;
    }

    .ALG-input-account {
        padding: 10px;
        font-size: 13px;
    }

    .ALG-account-Button,
    .ALG-account-Forget-Button,
    .ALG-account-Re-Button {
        padding: 10px;
        font-size: 13px;
    }
}


/* استایل‌های صفحه فراموشی رمز عبور با پیشوند AFP */
/*   */
/* استایل‌های صفحه فراموشی رمز عبور با پیشوند AFP */
.AFP-main-row {
    margin: 0;
    display: flex;
    flex-direction: row;
    min-height: 480px; /* کاهش ارتفاع */
}

.AFP-wrap-account-pic {
    background-image: url('../img/Site/Activate.jpg');
    background-size: cover;
    background-position: center;
    display: none;
    flex: 1;
    border-radius: 16px 0 0 16px;
}

.AFP-account-form {
    padding: 25px; /* کاهش padding */
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.AFP-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px; /* کاهش فاصله */
    gap: 12px; /* کاهش فاصله */
    text-align: center;
}

.AFP-account-form-title {
    font-family: 'Yekan', sans-serif;
    color: #2c3e50;
    font-size: 22px; /* کاهش سایز فونت */
    font-weight: bold;
    margin: 0;
}

.AFP-home-button {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7f8c8d;
    text-decoration: none;
    font-size: 13px; /* کاهش سایز فونت */
    transition: all 0.3s;
    padding: 6px 12px; /* کاهش padding */
    border: 1px solid #e6e9ed;
    border-radius: 6px; /* کاهش radius */
    width: fit-content;
}

    .AFP-home-button:hover {
        color: #3498db;
        border-color: #3498db;
        background-color: #f8f9fa;
    }

.AFP-mobile-text {
    font-family: 'Vazir', sans-serif;
    font-size: 14px; /* کاهش سایز فونت */
    color: #5a6c7d;
    margin-bottom: 15px; /* کاهش فاصله */
    text-align: center;
    padding: 8px; /* کاهش padding */
    background-color: #f8f9fa;
    border-radius: 6px; /* کاهش radius */
}

    .AFP-mobile-text span {
        font-weight: bold;
        color: #2c3e50;
    }

.AFP-text-success {
    color: #28a745;
    font-size: 13px; /* کاهش سایز فونت */
    margin-bottom: 12px; /* کاهش فاصله */
    display: flex;
    align-items: center;
    gap: 6px; /* کاهش فاصله */
    font-family: 'Vazir', sans-serif;
}

.AFP-text-danger {
    color: #e74c3c;
    font-size: 12px; /* کاهش سایز فونت */
    margin-top: 4px; /* کاهش فاصله */
    display: block;
    min-height: 16px; /* کاهش ارتفاع */
    font-family: 'Vazir', sans-serif;
}

.AFP-fa-check {
    color: #28a745;
    font-size: 14px; /* کاهش سایز فونت */
}

.AFP-fa-warning {
    color: #e74c3c;
    margin-left: 4px;
}

.AFP-form-container {
    margin-top: 12px; /* کاهش فاصله */
}

.AFP-form-group {
    margin-bottom: 16px; /* کاهش فاصله */
}

.AFP-control-label {
    display: block;
    margin-bottom: 6px; /* کاهش فاصله */
    font-weight: 600;
    color: #2c3e50;
    font-family: 'Vazir', sans-serif;
    font-size: 13px; /* کاهش سایز فونت */
}

.AFP-input-account {
    width: 100%;
    padding: 12px 14px; /* کاهش padding */
    border: 2px solid #e6e9ed;
    border-radius: 8px; /* کاهش radius */
    font-size: 14px; /* کاهش سایز فونت */
    font-family: 'Vazir', sans-serif;
    transition: all 0.3s;
    box-sizing: border-box;
    background-color: #f8f9fa;
}

    .AFP-input-account:focus {
        outline: none;
        border-color: #3498db;
        box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
        background-color: #fff;
    }

.AFP-resend-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px; /* کاهش فاصله */
    gap: 8px; /* کاهش فاصله */
}

.AFP-resend-button {
    font-family: 'Vazir', sans-serif;
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    color: white;
    font-size: 13px; /* کاهش سایز فونت */
    border-radius: 6px; /* کاهش radius */
    padding: 8px 12px; /* کاهش padding */
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 2px 4px rgba(255, 193, 7, 0.3); /* کاهش سایه */
}

    .AFP-resend-button:hover {
        background: linear-gradient(135deg, #ff9800 0%, #ffc107 100%);
        transform: translateY(-1px); /* کاهش حرکت */
        box-shadow: 0 3px 6px rgba(255, 193, 7, 0.4); /* کاهش سایه */
        color: white;
    }

.AFP-timer {
    font-family: 'Vazir', sans-serif;
    font-size: 13px; /* کاهش سایز فونت */
    color: #777;
    display: inline;
}

.AFP-buttons-container {
    display: flex;
    flex-direction: column;
    gap: 10px; /* کاهش فاصله */
    margin-top: 12px; /* کاهش فاصله */
}

.AFP-account-Button {
    width: 100%;
    padding: 12px; /* کاهش padding */
    border: none;
    border-radius: 8px; /* کاهش radius */
    font-size: 14px; /* کاهش سایز فونت */
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Vazir', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.AFP-btn-change {
    background: linear-gradient(135deg, #3498db 0%, #2c81ba 100%);
    color: white;
    box-shadow: 0 2px 6px rgba(52, 152, 219, 0.25); /* کاهش سایه */
}

    .AFP-btn-change:hover {
        background: linear-gradient(135deg, #2c81ba 0%, #3498db 100%);
        transform: translateY(-1px); /* کاهش حرکت */
        box-shadow: 0 4px 8px rgba(52, 152, 219, 0.35); /* کاهش سایه */
    }

.AFP-account-back-button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 12px; /* کاهش padding */
    font-family: 'Vazir', sans-serif;
    font-size: 14px; /* کاهش سایز فونت */
    font-weight: 600;
    color: #7f8c8d;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid #e6e9ed;
    border-radius: 8px; /* کاهش radius */
    background: transparent;
    text-align: center;
}

    .AFP-account-back-button:hover {
        color: #3498db;
        border-color: #3498db;
        background-color: #f8f9fa;
    }

.AFP-focused .AFP-control-label {
    color: #3498db;
}

/* رسپانسیو برای دستگاه‌های مختلف */
@media (min-width: 992px) {
    .AFP-wrap-account-pic {
        display: block;
    }

    .AFP-header {
        flex-direction: row;
        justify-content: space-between;
        text-align: right;
    }
}

@media (max-width: 991px) {
    .AFP-main-row {
        flex-direction: column;
        min-height: auto;
    }

    .AFP-wrap-account-pic {
        display: block;
        height: 180px; /* کاهش ارتفاع */
        border-radius: 16px 16px 0 0;
    }

    .AFP-account-form {
        padding: 20px; /* کاهش padding */
    }
}

@media (max-width: 767px) {
    .AFP-account-form {
        padding: 18px; /* کاهش padding */
    }

    .AFP-account-form-title {
        font-size: 20px; /* کاهش سایز فونت */
    }

    .AFP-resend-container {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 480px) {
    .AFP-account-form {
        padding: 16px 12px; /* کاهش padding */
    }

    .AFP-account-form-title {
        font-size: 18px; /* کاهش سایز فونت */
    }

    .AFP-home-button {
        font-size: 12px;
        padding: 5px 10px; /* کاهش padding */
    }

    .AFP-form-group {
        margin-bottom: 14px; /* کاهش فاصله */
    }

    .AFP-control-label {
        font-size: 12px; /* کاهش سایز فونت */
    }

    .AFP-input-account {
        padding: 10px 12px; /* کاهش padding */
        font-size: 13px; /* کاهش سایز فونت */
    }

    .AFP-buttons-container {
        gap: 8px; /* کاهش فاصله */
    }

    .AFP-account-Button,
    .AFP-account-back-button {
        padding: 10px; /* کاهش padding */
        font-size: 13px; /* کاهش سایز فونت */
    }
}

@media (max-width: 360px) {
    .AFP-account-form {
        padding: 14px 10px; /* کاهش padding */
    }

    .AFP-account-form-title {
        font-size: 17px; /* کاهش سایز فونت */
    }

    .AFP-home-button {
        font-size: 11px;
        padding: 4px 8px; /* کاهش padding */
    }

    .AFP-input-account {
        padding: 9px 11px; /* کاهش padding */
        font-size: 12px; /* کاهش سایز فونت */
    }

    .AFP-account-Button,
    .AFP-account-back-button {
        padding: 9px; /* کاهش padding */
        font-size: 12px; /* کاهش سایز فونت */
    }

    .AFP-buttons-container {
        gap: 6px; /* کاهش فاصله */
    }
}

/* استایل‌های صفحه بررسی شماره موبایل با پیشوند ACP */
/*  */
/*  */
.ACP-main-row {
    margin: 0;
    display: flex;
    flex-direction: row;
    min-height: 480px;
}

.ACP-wrap-account-pic {
    background-image: url('../img/Site/Forget.jpg');
    background-size: cover;
    background-position: center;
    display: none;
    flex: 1;
    border-radius: 16px 0 0 16px;
}

.ACP-account-form {
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.ACP-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    gap: 12px;
    text-align: center;
}

.ACP-account-form-title {
    font-family: 'Yekan', sans-serif;
    color: #2c3e50;
    font-size: 22px;
    font-weight: bold;
    margin: 0;
}

.ACP-home-button {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7f8c8d;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s;
    padding: 6px 12px;
    border: 1px solid #e6e9ed;
    border-radius: 6px;
    width: fit-content;
}

    .ACP-home-button:hover {
        color: #3498db;
        border-color: #3498db;
        background-color: #f8f9fa;
    }

.ACP-text-danger {
    color: #e74c3c;
    font-size: 13px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Vazir', sans-serif;
}

.ACP-fa-warning {
    color: #e74c3c;
}

.ACP-form-container {
    margin-top: 15px;
}

.ACP-form-group {
    margin-bottom: 20px;
}

.ACP-control-label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #2c3e50;
    font-family: 'Vazir', sans-serif;
    font-size: 14px;
}

.ACP-input-account {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid #e6e9ed;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Vazir', sans-serif;
    transition: all 0.3s;
    box-sizing: border-box;
    background-color: #f8f9fa;
}

    .ACP-input-account:focus {
        outline: none;
        border-color: #3498db;
        box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
        background-color: #fff;
    }

.ACP-buttons-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.ACP-account-Button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Vazir', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.ACP-btn-send {
    background: linear-gradient(135deg, #3498db 0%, #2c81ba 100%);
    color: white;
    box-shadow: 0 2px 6px rgba(52, 152, 219, 0.25);
}

    .ACP-btn-send:hover {
        background: linear-gradient(135deg, #2c81ba 0%, #3498db 100%);
        transform: translateY(-1px);
        box-shadow: 0 4px 8px rgba(52, 152, 219, 0.35);
    }

.ACP-account-back-button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 12px;
    font-family: 'Vazir', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #7f8c8d;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid #e6e9ed;
    border-radius: 8px;
    background: transparent;
    text-align: center;
}

    .ACP-account-back-button:hover {
        color: #3498db;
        border-color: #3498db;
        background-color: #f8f9fa;
    }

.ACP-focused .ACP-control-label {
    color: #3498db;
}

/* رسپانسیو برای دستگاه‌های مختلف */
@media (min-width: 992px) {
    .ACP-wrap-account-pic {
        display: block;
    }

    .ACP-header {
        flex-direction: row;
        justify-content: space-between;
        text-align: right;
    }
}

@media (max-width: 991px) {
    .ACP-main-row {
        flex-direction: column;
        min-height: auto;
    }

    .ACP-wrap-account-pic {
        display: block;
        height: 180px;
        border-radius: 16px 16px 0 0;
    }

    .ACP-account-form {
        padding: 20px;
    }
}

@media (max-width: 767px) {
    .ACP-account-form {
        padding: 18px;
    }

    .ACP-account-form-title {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .ACP-account-form {
        padding: 16px 12px;
    }

    .ACP-account-form-title {
        font-size: 18px;
    }

    .ACP-home-button {
        font-size: 12px;
        padding: 5px 10px;
    }

    .ACP-form-group {
        margin-bottom: 16px;
    }

    .ACP-control-label {
        font-size: 13px;
    }

    .ACP-input-account {
        padding: 10px 12px;
        font-size: 13px;
    }

    .ACP-buttons-container {
        gap: 8px;
    }

    .ACP-account-Button,
    .ACP-account-back-button {
        padding: 10px;
        font-size: 13px;
    }
}

@media (max-width: 360px) {
    .ACP-account-form {
        padding: 14px 10px;
    }

    .ACP-account-form-title {
        font-size: 17px;
    }

    .ACP-home-button {
        font-size: 11px;
        padding: 4px 8px;
    }

    .ACP-input-account {
        padding: 9px 11px;
        font-size: 12px;
    }

    .ACP-account-Button,
    .ACP-account-back-button {
        padding: 9px;
        font-size: 12px;
    }

    .ACP-buttons-container {
        gap: 6px;
    }
}

/* استایل‌های صفحه ثبت نام با پیشوند ARG */
/*  */
/*  */

.ARG-main-row {
    margin: 0;
    display: flex;
    flex-direction: row;
    min-height: 480px;
}

.ARG-wrap-account-pic {
    background-image: url('../img/Site/RegisterForm.jpg');
    background-size: cover;
    background-position: center;
    display: none;
    flex: 1;
    border-radius: 16px 0 0 16px;
}

.ARG-account-form {
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.ARG-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    gap: 12px;
    text-align: center;
}

.ARG-account-form-title {
    font-family: 'Yekan', sans-serif;
    color: #2c3e50;
    font-size: 22px;
    font-weight: bold;
    margin: 0;
}

.ARG-home-button {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7f8c8d;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s;
    padding: 6px 12px;
    border: 1px solid #e6e9ed;
    border-radius: 6px;
    width: fit-content;
}

    .ARG-home-button:hover {
        color: #3498db;
        border-color: #3498db;
        background-color: #f8f9fa;
    }

.ARG-text-danger {
    color: #e74c3c;
    font-size: 13px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Vazir', sans-serif;
}

.ARG-fa-warning {
    color: #e74c3c;
}

.ARG-form-container {
    margin-top: 15px;
}

.ARG-form-group {
    margin-bottom: 16px;
}

.ARG-control-label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #2c3e50;
    font-family: 'Vazir', sans-serif;
    font-size: 14px;
}

.ARG-input-account {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid #e6e9ed;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Vazir', sans-serif;
    transition: all 0.3s;
    box-sizing: border-box;
    background-color: #f8f9fa;
}

    .ARG-input-account:focus {
        outline: none;
        border-color: #3498db;
        box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
        background-color: #fff;
    }

.ARG-buttons-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.ARG-account-Button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Vazir', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.ARG-btn-register {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    color: white;
    box-shadow: 0 2px 6px rgba(46, 204, 113, 0.25);
}

    .ARG-btn-register:hover {
        background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
        transform: translateY(-1px);
        box-shadow: 0 4px 8px rgba(46, 204, 113, 0.35);
    }

.ARG-account-back-button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 12px;
    font-family: 'Vazir', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #7f8c8d;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid #e6e9ed;
    border-radius: 8px;
    background: transparent;
    text-align: center;
}

    .ARG-account-back-button:hover {
        color: #3498db;
        border-color: #3498db;
        background-color: #f8f9fa;
    }

.ARG-focused .ARG-control-label {
    color: #3498db;
}

/* رسپانسیو برای دستگاه‌های مختلف */
@media (min-width: 992px) {
    .ARG-wrap-account-pic {
        display: block;
    }

    .ARG-header {
        flex-direction: row;
        justify-content: space-between;
        text-align: right;
    }
}

@media (max-width: 991px) {
    .ARG-main-row {
        flex-direction: column;
        min-height: auto;
    }

    .ARG-wrap-account-pic {
        display: block;
        height: 180px;
        border-radius: 16px 16px 0 0;
    }

    .ARG-account-form {
        padding: 20px;
    }
}

@media (max-width: 767px) {
    .ARG-account-form {
        padding: 18px;
    }

    .ARG-account-form-title {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .ARG-account-form {
        padding: 16px 12px;
    }

    .ARG-account-form-title {
        font-size: 18px;
    }

    .ARG-home-button {
        font-size: 12px;
        padding: 5px 10px;
    }

    .ARG-form-group {
        margin-bottom: 14px;
    }

    .ARG-control-label {
        font-size: 13px;
    }

    .ARG-input-account {
        padding: 10px 12px;
        font-size: 13px;
    }

    .ARG-buttons-container {
        gap: 8px;
    }

    .ARG-account-Button,
    .ARG-account-back-button {
        padding: 10px;
        font-size: 13px;
    }
}

@media (max-width: 360px) {
    .ARG-account-form {
        padding: 14px 10px;
    }

    .ARG-account-form-title {
        font-size: 17px;
    }

    .ARG-home-button {
        font-size: 11px;
        padding: 4px 8px;
    }

    .ARG-input-account {
        padding: 9px 11px;
        font-size: 12px;
    }

    .ARG-account-Button,
    .ARG-account-back-button {
        padding: 9px;
        font-size: 12px;
    }

    .ARG-buttons-container {
        gap: 6px;
    }
}