﻿/*//////////////////////////////////////////////////////////////////
[ FONT ]*/

@font-face {
    font-family: estedad-regular;
    src: url('../../fonts/estedad-regular.woff2') format('woff2');
}

@font-face {
    font-family: estedad-bold;
    src: url('../../fonts/estedad-bold.woff2') format('woff2');
}

@font-face {
    font-family: estedad-medium;
    src: url('../../fonts/estedad-medium.woff2') format('woff2');
}

@font-face {
    font-family: estedad-semibold;
    src: url('../../fonts/estedad-semibold.woff2') format('woff2');
}
body {
    font-family: 'Estedad', sans-serif;
    direction: rtl;
    background-color: #f2f2f2;
}

.limiter {
    width: 100%;
    margin: 0 auto;
    padding: 40px 15px;
}

.container-login100 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wrap-login100 {
    width: 100%;
    max-width: 1000px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    padding: 50px;
    display: flex;
    flex-wrap: wrap;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.right-section {
    flex: 1;
    text-align: center;
    padding: 20px;
}

    .right-section img {
        width: 60%;
    }

.extra-info {
    margin-top: 15px;
    font-size: 14px;
    color: #333;
}

.login100-form {
    flex: 1;
    padding: 30px;
}

.login100-form-title {
    font-size: 50px;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: center;
    color: #333;
    width: 100%;
    display: block;
    padding-bottom: 60px;
}

.wrap-input100 {
    position: relative;
    margin-bottom: 20px;
}

.input100 {
    width: 100%;
    padding: 12px 40px 12px 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.symbol-input100 {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
}

.container-login100-form-btn {
    text-align: center;
    margin-top: 20px;
}

.login100-form-btn {
    background-color: #3676ba;
    color: white;
    border: none;
    padding: 12px 40px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
    gap: 30px; /* فاصله بین دکمه‌ها */

}
    .login100-form-btn:hover {
        background-color: #213f5f;
    }

.app-version {
    text-align: center;
    margin-top: 15px;
    font-size: 13px;
    color: #666;
}

.error-message {
    color: red;
    text-align: center;
    margin-top: 10px;
    font-weight: bold;
}
.login100-form-btn {
    font-size: 18px;
    padding: 12px 40px;
    border-radius: 8px;
    min-width: 160px;
    text-align: center;
    transition: all 0.3s ease;
}

.login100-form-btn-outline {
    background-color: transparent;
    border: 2px solid #007bff;
    color: #007bff;
}

    .login100-form-btn-outline:hover {
        background-color: #007bff;
        color: #fff;
    }
/* ریسپانسیو */
@media (max-width: 768px) {
    .wrap-login100 {
        flex-direction: column;
        padding: 30px 20px;
    }

    .right-section {
        display: none;
    }

    .login100-form {
        width: 100%;
        padding: 0;
    }
}

