﻿body {
    margin: 0;
    font-family: IRANSans, sans-serif;
    background: #f4f7fb;
}

.auth-wrapper {
    width: 1100px;
    margin: 50px auto;
    display: flex;
    gap: 25px;
}

/* CARD */
.auth-card {
    flex: 1;
    background: #fff;
    border-radius: 18px;
    padding: 35px 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

/* TITLE */
.auth-title {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
}

.auth-subtitle {
    font-size: 12px;
    color: #777;
    text-align: center;
    margin: 8px 0 20px;
}

/* INPUT FIELD */
.field {
    position: relative;
    margin-bottom: 14px;
}

    .field input {
        width: 100%;
        padding: 12px 40px 12px 12px;
        border: 1px solid #e6e8ef;
        border-radius: 10px;
        outline: none;
        font-size: 13px;
        text-align:right
    }

    .field i {
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        color: #9aa3b2;
    }

/* CHECKBOX */
.auth-check {
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #666;
    margin: 10px 0;
}

/* BUTTON */
.btn-primary {
    width: 100%;
    padding: 12px;
    background: #0f172a;
    color: #fff;
    border: none;
    border-radius: 10px;
    margin-top: 10px;
    cursor: pointer;
}

/* LINE DIVIDER */
.auth-line {
    text-align: center;
    margin: 18px 0;
    position: relative;
    font-size: 12px;
    color: #999;
}

    .auth-line::before,
    .auth-line::after {
        content: "";
        position: absolute;
        top: 50%;
        width: 40%;
        height: 1px;
        background: #e6e8ef;
    }

    .auth-line::before {
        right: 0;
    }

    .auth-line::after {
        left: 0;
    }

/* SOCIAL */
.auth-social {
    display: flex;
    gap: 10px;
}

    .auth-social button {
        flex: 1;
        padding: 10px;
        border: 1px solid #e6e8ef;
        background: #fff;
        border-radius: 10px;
        cursor: pointer;
    }

/* LOGIN ROW */
.auth-row {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    margin: 10px 0;
}

    .auth-row a {
        text-decoration: none;
        color: #2563eb;
        text-align:right;width:100%
    }

textarea {
    text-align: right;
    font-family: 'Shabnam';
}