/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/
Description: چایلد تم برای قالب Hello Elementor
Author: [Mohammad]
Author URI: https://websitex.net
Template: hello-elementor
Version: 1.0.0
Text Domain: hello-elementor-child
*/

/* استایل‌های سفارشی اینجا بنویسید */


/* =========================================================
   LOGIN PAGE
   ========================================================= */

/* Header position */
body.tml-action-login .site-header,
body.tml-action-login .elementor-location-header,
body.tml-action-login #masthead {
    transform: translateY(20px);
}

/* Hide page titles */
body.tml-action-login .entry-title,
body.tml-action-login .page-title,
body.tml-action-login h1.entry-title {
    display: none !important;
}

/* Hide footer */
body.tml-action-login footer,
body.tml-action-login .site-footer,
body.tml-action-login footer#colophon {
    display: none !important;
}


/* Login page background - Desktop */
body.tml-action-login {
    background-image: url("https://arya-group.co/wp-content/uploads/2026/05/IMG_8938-scaled.jpg") !important;
    background-size: 100% 135% !important;
    background-position: top center !important;
    background-repeat: no-repeat !important;
}


/* Login form */
body.tml-action-login .tml,
body.tml-action-login .tml-login {
    width: 90%;
    max-width: 450px;
    max-height: 450px;

    margin: 250px auto 100px !important;
    padding: 25px;

    background: #fff;
    border-radius: 12px;

    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.12);

    box-sizing: border-box;
    overflow: hidden;
}


/* Login title / logo */
body.tml-action-login .tml-login h1,
body.tml-action-login .tml h1 {
    text-align: center;
}


/* Input fields */
body.tml-action-login .tml input[type="text"],
body.tml-action-login .tml input[type="email"],
body.tml-action-login .tml input[type="password"] {
    width: 100%;
    height: 40px;

    border: 1px solid #ddd;
    border-radius: 6px;

    padding: 0 15px;
    box-sizing: border-box;
}


/* Login button */
body.tml-action-login .tml-submit-wrap {
    text-align: right !important;
}

body.tml-action-login .tml-button,
body.tml-action-login .tml input[type="submit"] {
    display: inline-block !important;

    background: #F48120 !important;
    color: #fff !important;

    border: none !important;
    border-radius: 6px;

    padding: 12px 25px;

    cursor: pointer;
}

body.tml-action-login .tml-button:hover,
body.tml-action-login .tml input[type="submit"]:hover {
    background: #cf711f !important;
}


/* Links */
body.tml-action-login .tml a {
    color: #e67e22;
}


/* Hide "Lost Password" link */
body.tml-action-login .tml-lostpassword-link,
body.tml-action-login .tml .tml-action-links,
body.tml-action-login .tml a[href*="lostpassword"] {
    display: none !important;
}


/* Login page heading */
body.tml-action-login::before {
    content: "Your workday starts here!";

    position: absolute;
    top: 150px;
    left: 50%;

    transform: translateX(-50%);

    width: 90%;

    color: #fff;

    font-size: clamp(28px, 5vw, 40px);
    line-height: 1.2;
    font-weight: 700;

    text-align: center;

    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);

    z-index: 10;
}


/* =========================================================
   REACTIONS
   ========================================================= */

.reaction-wrapper {
    display: flex;
    gap: 8px;

    align-items: center;
    flex-wrap: wrap;
}


.reaction-button {
    position: relative;

    display: flex;
    align-items: center;

    gap: 5px;

    background: #fff;

    border: 1px solid #e5e5e5;
    border-radius: 30px;

    padding: 7px 12px;

    cursor: pointer;

    font-size: 18px;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        opacity 0.2s ease;
}


.reaction-button:hover {
    transform: translateY(-3px);
}


.reaction-button.selected {
    background: #e9f7ff;

    border: 2px solid #2196f3;

    transform: scale(1.15);

    opacity: 1;
}


.reaction-number {
    min-width: 12px;

    margin-left: 4px;

    font-size: 14px;
    font-weight: 600;
}


.reaction-button:active {
    transform: scale(0.92);
}


/* =========================================================
   MOBILE
   ========================================================= */

@media only screen and (max-width: 767px) {

    /* Login background */
    body.tml-action-login {
        background-image: url("https://arya-group.co/wp-content/uploads/2026/01/Ps-Phone.webp") !important;

        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
    }


    /* Reactions */
    .reaction-wrapper {
        gap: 6px;
    }

    .reaction-button {
        padding: 6px 10px;
        font-size: 16px;
    }
}


