/* resources/css/user-profile.css */
.user-profile-container {
    font-family: "Vazir", Arial, sans-serif;
    direction: rtl;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.profile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    background: #fff;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.profile-title {
    color: #4e73df;
    font-size: 1.8rem;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e3e6f0;
}

.user-name {
    font-weight: bold;
    display: block;
}

.user-role {
    color: #b7b9cc;
    font-size: 0.9rem;
}

.profile-content {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.profile-card {
    flex: 1;
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.profile-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #f8f9fc;
    margin-bottom: 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 20px 0;
}

.stat-item {
    background: #f8f9fc;
    padding: 15px;
    border-radius: 8px;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: #4e73df;
}

.stat-label {
    color: #858796;
    font-size: 0.9rem;
}

.info-card {
    flex: 2;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.card-header {
    padding: 15px 20px;
    border-bottom: 1px solid #e3e6f0;
    background: #f8f9fc;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.card-header h2 {
    color: #4e73df;
    font-size: 1.2rem;
}

.card-body {
    padding: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #5a5c69;
}

.form-control {
    width: 96%;
    padding: 10px;
    border: 1px solid #d1d3e2;
    border-radius: 5px;
    font-size: 1rem;
}

.error {
    color: #e74a3b;
    font-size: 0.8rem;
    display: block;
    margin-top: 5px;
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-primary {
    background: #4e73df;
    color: white;
}

.btn-primary:hover {
    background: #2e59d9;
}

.btn-danger {
    background: #e74a3b;
    color: white;
}

.btn-danger:hover {
    background: #be2617;
}

.btn-save {
    background: #1cc88a;
    color: white;
    width: 100%;
    padding: 12px;
}

.btn-save:hover {
    background: #17a673;
}

.activity-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

.activity-table {
    width: 100%;
    border-collapse: collapse;
}

.activity-table th,
.activity-table td {
    padding: 12px 15px;
    text-align: right;
    border-bottom: 1px solid #e3e6f0;
}

.activity-table th {
    background: #f8f9fc;
    color: #4e73df;
}

.status-success {
    color: #1cc88a;
}

.status-warning {
    color: #f6c23e;
}

.status-failed {
    color: #e74a3b;
}

.hidden {
    display: none;
}

/* حالت موبایل */
@media (max-width: 768px) {
    .profile-content {
        flex-direction: column;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* //calculator// */

.calculator {
    width: 320px;
    margin: 0 auto;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 20px;
    background: #f5f5f5;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.calculator-display {
    background: #222;
    color: #fff;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    text-align: right;
    min-height: 80px;
}

.calculator-screen {
    font-size: 2.5em;
    overflow: hidden;
    text-overflow: ellipsis;
}

.calculator-history {
    font-size: 0.9em;
    color: #aaa;
    min-height: 20px;
}

.history-entry {
    margin-bottom: 3px;
}

.calculator-keys {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 10px;
}

.calculator-key {
    padding: 15px;
    font-size: 1.2em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    background: #e0e0e0;
    transition: background 0.2s;
}

.calculator-key:hover {
    background: #d0d0d0;
}

.calculator-key.operator {
    background: #f5923e;
    color: white;
}

.calculator-key.operator:hover {
    background: #e0812e;
}

.calculator-key.function {
    background: #a5a5a5;
    color: white;
}

.calculator-key.function:hover {
    background: #959595;
}

.calculator-key.zero {
    grid-column: span 2;
}

.calculator-key.equals {
    grid-column: span 1;
    background: #f5923e;
    color: white;
}
/* استایل‌های اصلی پروفایل کاربر */
.profile-container {
    max-width: 56rem;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.profile-card {
    background-color: #fff;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    border-radius: 0.5rem;
    overflow: hidden;
}

.profile-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e5e7eb;
}

.profile-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
}

.profile-content {
    padding: 1.5rem 2rem;
}

/* استایل‌های فرم */
.profile-form-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .profile-form-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.form-group {
    margin-bottom: 1rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
}

.form-input {
    display: block;
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-input:focus {
    border-color: #6366f1;
    outline: 0;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.25);
}

.form-error {
    color: #ef4444;
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

/* استایل‌های بخش رمز عبور */
.password-toggle-btn {
    color: #4f46e5;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
}

.password-toggle-btn:hover {
    color: #4338ca;
    text-decoration: underline;
}

.password-section {
    margin-top: 1.5rem;
    background-color: #f9fafb;
    padding: 1rem;
    border-radius: 0.375rem;
}

/* استایل‌های دکمه‌ها */
.form-actions {
    margin-top: 1.5rem;
    display: flex;
    justify-content: flex-end;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background-color: #4f46e5;
    color: white;
    font-weight: 500;
    border-radius: 0.375rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.15s ease-in-out;
}

.submit-btn:hover {
    background-color: #4338ca;
}

/* استایل‌های نوتیفیکیشن */
.notification {
    margin-bottom: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
}

.notification-success {
    background-color: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #065f46;
}

/* //////////  اسکر.ول بار ///////////// */

.scroll-top {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #3498db;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 999999999;
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background-color: #2980b9;
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.scroll-top:active {
    transform: translateY(0) !important;
}

.scroll-top i {
    font-size: 20px;
    transition: transform 0.2s ease;
}

.scroll-top:hover i {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .scroll-top {
        width: 40px;
        height: 40px;
        right: 20px;
        bottom: 20px;
    }

    .scroll-top i {
        font-size: 16px;
    }
}
.posts-container {
    direction: rtl;
    text-align: right;
}

.post-card {
    transition: transform 0.3s ease;
}

.post-card:hover {
    transform: translateY(-5px);
}

.post-content {
    line-height: 1.8;
}

.post-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 2rem 0 1rem;
    color: #1a365d;
}

.post-content img {
    max-width: 100%;
    height: auto;
    margin: 1.5rem 0;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.category-badge {
    background-color: #e2e8f0;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
}
.search-box {
    flex-grow: 1;
    max-width: 400px;
}

.search-box input {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}
.article {
    position: relative;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    padding: 4rem;
}

.article-name h1 {
    font-size: 22px;
    color: rgb(57, 57, 59);
    margin: 0.4rem;
}
.article-ul ul li {
    margin: 0.7rem;
    font-size: 1.7rem;
}
.article-ul ul li:hover {
    background-color: rgba(233, 232, 232, 0.294);
    border-radius: 5px;
}

.article-ul ul li div p {
    overflow: hidden;
    margin-top: 2rem;
    margin-right: 3rem;
}

.article-ul ul li i {
    margin: 1rem 0 1rem 1rem;
    font-size: 20px;
    color: rgb(73, 75, 100);
    transition: all 0.4s ease;
}
.article-ul ul li i:hover {
    transform: rotate(360deg);
    transition: all 0.4s ease;
    color: rgb(86, 90, 138);
}
.article-body p {
    text-transform: wrap;
    margin: 1rem;
}
:root {
    --nav-color: #5b5b5b;
    --nav-hover-color: #000000;
    --nav-mobile-background-color: #f5f5f5;
    --nav-dropdown-background-color: #ffffff;
    --nav-dropdown-color: #5b5b5b;
    --nav-dropdown-hover-color: #000000;
    --background-color: #ffffff;
    --default-color: #212529;
    --heading-color: #000000;
    --accent-color: #000000;
    --surface-color: #ffffff;
    --contrast-color: #ffffff;
}

.light-background {
    --background-color: #f9f9f9;
    --surface-color: #ffffff;
}

.dark-background {
    --background-color: #060606;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #252525;
    --contrast-color: #ffffff;
}

:root {
    scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 60px 0;
    scroll-margin-top: 90px;
    overflow: clip;
}

@media (max-width: 1199px) {
    section,
    .section {
        scroll-margin-top: 66px;
    }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
    text-align: center;
    padding-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 15px;
}

.section-title p {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .section-header {
    margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
    overflow: hidden;
}

.testimonials .testimonial-item {
    text-align: center;
}

.testimonials .testimonial-item .testimonial-img {
    width: 120px;
    border-radius: 50%;
    border: 4px solid var(--background-color);
    margin: 0 auto;
}

.testimonials .testimonial-item h3 {
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin: 0 0 15px 0;
}

.testimonials .testimonial-item .stars {
    margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
    color: #ffc107;
    margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
    color: color-mix(in srgb, var(--accent-color), transparent 50%);
    font-size: 26px;
    line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
    transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
    font-style: italic;
    margin: 0 auto 15px auto;
}

.testimonials .swiper-wrapper {
    height: auto;
}

.testimonials .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    opacity: 1;
    background-color: color-mix(in srgb, var(--default-color), transparent 85%);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--accent-color);
}

@media (min-width: 992px) {
    .testimonials .testimonial-item p {
        width: 80%;
    }
}

.pagination {
    display: -ms-flexbox;
    display: flex;
    padding-left: 0;
    list-style: none;
    border-radius: 0.25rem;
}

.page-link {
    position: relative;
    display: block;
    padding: 0.5rem 0.75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: #007bff;
    background-color: #fff;
    border: 1px solid #dee2e6;
}

.page-link:hover {
    z-index: 2;
    color: #0056b3;
    text-decoration: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.page-link:focus {
    z-index: 2;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.page-link:not(:disabled):not(.disabled) {
    cursor: pointer;
}

.page-item:first-child .page-link {
    margin-left: 0;
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
}

.page-item:last-child .page-link {
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
}

.page-item.active .page-link {
    z-index: 1;
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

.page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    cursor: auto;
    background-color: #fff;
    border-color: #dee2e6;
}

.pagination-lg .page-link {
    padding: 0.75rem 1.5rem;
    font-size: 1.25rem;
    line-height: 1.5;
}

.pagination-lg .page-item:first-child .page-link {
    border-top-left-radius: 0.3rem;
    border-bottom-left-radius: 0.3rem;
}

.pagination-lg .page-item:last-child .page-link {
    border-top-right-radius: 0.3rem;
    border-bottom-right-radius: 0.3rem;
}

.pagination-sm .page-link {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
}

.pagination-sm .page-item:first-child .page-link {
    border-top-left-radius: 0.2rem;
    border-bottom-left-radius: 0.2rem;
}

.pagination-sm .page-item:last-child .page-link {
    border-top-right-radius: 0.2rem;
    border-bottom-right-radius: 0.2rem;
}
.alert {
    position: relative;
    padding: 0.75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
}
.alert-heading {
    color: inherit;
}

.alert-link {
    font-weight: 700;
}

.alert-dismissible {
    padding-right: 4rem;
}

.alert-dismissible .close {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.75rem 1.25rem;
    color: inherit;
}

.alert-primary {
    color: #004085;
    background-color: #cce5ff;
    border-color: #b8daff;
}

.alert-primary hr {
    border-top-color: #9fcdff;
}

.alert-primary .alert-link {
    color: #002752;
}

.alert-secondary {
    color: #383d41;
    background-color: #e2e3e5;
    border-color: #d6d8db;
}

.alert-secondary hr {
    border-top-color: #c8cbcf;
}

.alert-secondary .alert-link {
    color: #202326;
}

.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.alert-success hr {
    border-top-color: #b1dfbb;
}

.alert-success .alert-link {
    color: #0b2e13;
}

.alert-info {
    color: #0c5460;
    background-color: #d1ecf1;
    border-color: #bee5eb;
}

.alert-info hr {
    border-top-color: #abdde5;
}

.alert-info .alert-link {
    color: #062c33;
}

.alert-warning {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
}

.alert-warning hr {
    border-top-color: #ffe8a1;
}

.alert-warning .alert-link {
    color: #533f03;
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.alert-danger hr {
    border-top-color: #f1b0b7;
}

.alert-danger .alert-link {
    color: #491217;
}

.alert-light {
    color: #818182;
    background-color: #fefefe;
    border-color: #fdfdfe;
}

.alert-light hr {
    border-top-color: #ececf6;
}

.alert-light .alert-link {
    color: #686868;
}

.alert-dark {
    color: #1b1e21;
    background-color: #d6d8d9;
    border-color: #c6c8ca;
}

.alert-dark hr {
    border-top-color: #b9bbbe;
}

.alert-dark .alert-link {
    color: #040505;
}

.z-index-1000 {
    z-index: 1000;
}

.icon-ed {
    position: absolute;
    left: 1%;
}

.icon-ed i {
    font-size: 18px;
    padding: 0.5rem;
    margin: 0.5rem;
    cursor: pointer;
}

.text-danger {
    color: red;
}
.text-success {
    color: green;
}

.skew__wrap-p {
    background-color: #bbffcbab;
    padding: 1rem;
    margin: 1rem;
    border-radius: 5px;
}

.info-p {
    background-color: #87ffa3ab;
    border: 2px solid #393939;
    border-radius: 5px;
    padding: 2rem;
    margin: 2rem;
}
.pas-v {
    position: absolute;
    top: 8%;
    left: 1%;
}

.pas-v > span > i {
    padding: 0.4rem;
    margin: 0.4rem;
}

.btn-success {
    background-color: rgba(76, 255, 76, 0.827);
}
.btn-dander {
    background-color: rgb(248, 88, 88);
}

.closeModal {
    position: absolute;
    left: 5px;
    cursor: pointer;
}

.parent_id {
    color: rgb(21, 21, 21);
    padding: 0.3rem;
    margin: 0.3rem;
    border-radius: 3px;
    border: 1px solid #1b9021;
    background-color: rgb(66, 241, 250);
}

/* ///////////////////////////////////////////
///////////////////////////////////////////
///////////////////////////////////////////
///////////////////////////////////////////
///////////////////////////////////////////
///////////////////////////////////////////
/////////////////////////////////////////// */
.card {
    transition: all 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}
:root {
    --primary: #4361ee;
    --secondary: #3f37c9;
    --success: #4cc9f0;
    --danger: #f72585;
    --warning: #f8961e;
    --info: #4895ef;
    --dark: #212529;
    --light: #f8f9fa;
}

.card {
    transition: all 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.card-header {
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.card-body {
    padding: 1.5rem;
}

.stat-card {
    color: white;
}

.stat-card .icon {
    font-size: 2.5rem;
    opacity: 0.7;
}

.stat-card .stat-value {
    font-size: 2rem;
    font-weight: bold;
    margin: 0.5rem 0;
}

.stat-card .stat-title {
    opacity: 0.8;
    font-size: 0.9rem;
}

.bg-primary-gradient {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.bg-success-gradient {
    background: linear-gradient(135deg, var(--success), #38b6ff);
}

.bg-danger-gradient {
    background: linear-gradient(135deg, var(--danger), #ff0a78);
}

.bg-warning-gradient {
    background: linear-gradient(135deg, var(--warning), #ff9a1e);
}

.bg-info-gradient {
    background: linear-gradient(135deg, var(--info), #3a86ff);
}

.bg-dark-gradient {
    background: linear-gradient(135deg, var(--dark), #343a40);
}

.animate-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}
/* سایر استایل‌ها مانند مثال قبلی */
body {
    direction: rtl;
}
.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 90%;
    height: 80%;
    z-index: -1;
    position: fixed;
}
@media only screen and (min-width: 992px) {
    .wave {
        width: 100%;
        height: 100%;
        top: 17%;
    }
}

.img {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 40%;
}

.img > img {
    width: 100%;
    height: 100%;
}

.login-content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    width: 60%;
}

.form {
    width: 100%;
    padding: 3rem 0;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    background-color: transparent;
}

.login-content img {
    height: 100px;
}

.login-content h2 {
    margin: 15px 0;
    color: #303;
    text-transform: uppercase;
    font-size: 2.9rem;
}
.login-content h4 {
    margin: 15px 0;
    color: #303;
    text-transform: uppercase;
    font-size: 1.9rem;
}

.login-content .input-dev {
    position: relative;
    display: grid;
    grid-template-columns: 93% 7%;
    margin: 25px 0;
    padding: 5px 0;
    border-bottom: 2px solid #e9d9e9;
}

.login-content .input-dev .one {
    margin-top: 0;
}
.login-content .input-dev .pass {
    margin-bottom: 4px;
}

/* .img img {
    width: 500px;
} */

.i i {
    transform: 0.3s;
}

.input-dev > div {
    position: relative;
    height: 45px;
}

.input-dev > div > h5 {
    position: relative;
    right: 20px;
    top: 50%;
    transform: translateX(50%);
    color: #999;
    font-size: 10px;
    transition: 0.3s;
}
.input-dev::after,
.input-dev::before {
    content: "";
    position: absolute;
    bottom: -2px;
    width: 0%;
    height: 2px;
    background-color: #38d39f;
    transition: 0.4s;
}
.input-dev::before {
    right: 50%;
}
.input-dev::after {
    left: 50%;
}

.input-dev::after,
.input-dev::before {
    width: 50%;
}

.input-dev.focus > div > h5 {
    top: -5px;
    font-size: 15px;
}

.input-dev.focus > .i > i {
    color: #38d39f;
}
.input-dev > div > input {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    background: none;
    padding: 0.5rem 0.7rem;
    font-size: 1.2rem;
    color: #555;
}

.btn__ripple1 {
    justify-content: center;
    width: 100%;
    height: 50px;
    border-radius: 25px;
    background-image: linear-gradient(to right, #32be8f, #38d39f, #32be8f);
    background-size: 200%;
    font-size: 1.2rem;
    color: #fff;
    text-transform: uppercase;
    margin: 1rem 0;
    cursor: pointer;
    transition: 0.5s;
    background: linear-gradient(
        90deg,
        rgb(86, 232, 152) 17%,
        rgb(28, 153, 101) 47%,
        rgb(77, 213, 113) 80%
    );
}

.btn__ripple1:hover {
    background-position: right;
    background: linear-gradient(
        90deg,
        rgba(74, 255, 156, 1) 16%,
        rgba(73, 242, 153, 1) 28%,
        rgba(43, 255, 99, 1) 43%,
        rgba(63, 238, 110, 1) 59%,
        rgba(47, 248, 100, 1) 75%,
        rgba(95, 251, 137, 1) 89%
    );
}

.pssenot {
    display: block;
    text-align: right;
    text-decoration: none;
    color: #252525;
    font-size: 1.7rem;
    transition: 0.3s;
}
.pssenot:hover {
    color: #595959;
}

.form a {
    justify-content: center;
    text-align: center;
    top: 1rem;
    bottom: 1rem;
}
.saari {
    font-size: 17px;
}
.saari-a {
    font-size: 17px;
}
.container1 {
    display: flex;
    grid-template-columns: (2, 1fr);
    grid-gap: 7rem;
    padding: 0 2rem;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 1rem;
    padding-left: 1rem;

    @media only screen and (min-width: 576px) {
        max-width: 540px;
    }

    @media only screen and (min-width: 768px) {
        max-width: 720px;
    }

    @media only screen and (min-width: 992px) {
        max-width: 960px;
    }

    @media only screen and (min-width: 1200px) {
        max-width: 1140px;
    }

    @media only screen and (min-width: 1400px) {
        max-width: 1320px;
    }
}

@media only screen and (max-width: 992px) {
    .container1 {
        flex-direction: column;
    }
}
@media only screen and (max-width: 992px) {
    .img {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        z-index: 2;
    }
}
@media only screen and (max-width: 992px) {
    .login-content {
        z-index: 3;
    }
}
@media only screen and (max-width: 769px) {
    .img {
        width: 40%;
    }
}
@media only screen and (max-width: 769px) {
    .login-content {
        z-index: 3;
        width: 80%;
    }
}
@media only screen and (max-width: 576px) {
    .img {
        width: 40%;
    }
}
@media only screen and (max-width: 576px) {
    .login-content {
        width: 100%;
    }
}
.password-toggle-group {
                position: relative;
                                z-index: 10000000000000000;

            }

            .password-toggle {
                position: absolute;
                left: 10px;
                top: 50%;
                transform: translateY(-50%);
                background: none;
                border: none;
                cursor: pointer;
                color: #666;
                padding: 5px;
                            z-index: 10000000000000000;

            }

            .password-toggle:hover {
                color: #333;
            }

            /* اگر از فونت آیکون استفاده نمی‌کنید می‌توانید این استایل را حذف کنید */
            .fa {
                font-size: 16px;
            }