﻿/* ===============================
   AUTH – CLEAN PROFESSIONAL UI
================================ */

.auth-page {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    background: linear-gradient(180deg, #f7f4ef, #efece6);
}

/* BIG CARD */
.auth-card-lg {
    width: 100%;
    max-width: 720px;
    background: #fff;
    border-radius: 32px;
    padding: 56px 64px;
    box-shadow: 0 40px 90px rgba(0,0,0,.08);
}

/* HEADER */
.auth-header {
    text-align: center;
    margin-bottom: 46px;
}

    .auth-header h1 {
        font-size: 1.8rem;
        font-weight: 500;
        margin-bottom: 14px;
    }

    .auth-header p {
        font-size: .95rem;
        line-height: 2.2;
        color: #666;
    }

/* FORM */
.auth-form {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

    .form-group label {
        font-size: .8rem;
        color: #555;
    }

/* TWO COLUMNS */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-control {
    padding: .75rem 1.2rem;
    border-radius: 999px;
    font-size: .9rem;
}

/* TEXTAREA */
textarea.form-control {
    border-radius: 18px;
}

/* CAPTCHA */
.captcha-box {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 10px;
}

    .captcha-box img {
        height: 46px;
        border-radius: 12px;
        border: 1px solid #ddd;
    }

    .captcha-box button {
        border: none;
        background: #f1f1f1;
        padding: 8px 14px;
        border-radius: 14px;
        cursor: pointer;
    }

/* CHECKBOX */
.form-check {
    font-size: .8rem;
    color: #555;
}

/* SUBMIT */
.btn-auth {
    margin-top: 12px;
    padding: .8rem;
    border-radius: 999px;
    border: none;
    background: #8f6f54;
    color: #fff;
    font-size: .95rem;
    cursor: pointer;
}

/* FOOTER */
.auth-footer {
    margin-top: 42px;
    text-align: center;
    font-size: .8rem;
    color: #777;
}

    .auth-footer a {
        color: #8f6f54;
        text-decoration: none;
    }

/* RTL FIX */
html[dir="rtl"] .form-row {
    direction: rtl;
}



/* PROFILE CARD */
.profile-card {
    text-align: center;
}

/* HEADER */
.profile-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.avatar {
    width: 96px;
    height: 96px;
    background: linear-gradient(135deg, #8f6f54, #c2a68c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2.4rem;
}

.profile-name {
    margin: 10px 0 0;
    font-weight: 500;
}

.profile-email {
    font-size: .85rem;
    color: #777;
}

/* BIO */
.profile-bio {
    margin-top: 32px;
    text-align: right;
}

    .profile-bio h6 {
        font-size: .85rem;
        color: #888;
        margin-bottom: 10px;
    }

    .profile-bio p {
        font-size: .9rem;
        line-height: 2;
        color: #444;
    }

/* SHARE */
.share-box h6 {
    font-size: .85rem;
    color: #777;
    margin-bottom: 16px;
}

.share-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
}

.share-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    cursor: pointer;
    transition: all .25s ease;
}

    /* COLORS */
    .share-btn.facebook {
        background: #1877f2;
    }

    .share-btn.twitter {
        background: #111;
    }

    .share-btn.whatsapp {
        background: #25d366;
    }

    .share-btn.copy {
        background: #6c757d;
    }

    .share-btn:hover {
        transform: translateY(-4px);
        opacity: .9;
    }