* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: vazir;
    height: 100vh;
    background: #000;
}

/* layout */

.auth-container {
    display: flex;
    height: 100vh;
}

/* RIGHT LOGIN */

.auth-right {
    width: 40%;
    background:
        radial-gradient(circle at 20% 30%, #1a1a1a 0%, transparent 45%),
        linear-gradient(to left, #000000, #000000b8);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 70px;
    position: relative;
    overflow: hidden;
}

/* Ù†ÙˆØ± Ø±ÙˆÛŒ Ø¨ÙˆØ±Ø¯Ø± */

.auth-right::after {
    content: "";
    position: absolute;
    left: -7px;
    top: -20%;
    width: 6px;
    height: 40%;
    background: linear-gradient(
        to bottom,
        transparent,
        #ffffff,
        #d0d0d0,
        transparent
    );
    filter: blur(2px);
    animation: borderLight 3s ease-in-out infinite;
}

@media (max-width: 800px) {
    .auth-right::after {
        left: -5px;
        background: linear-gradient(
            to bottom,
            transparent,
            #ffffff,
            #d0d0d0,
            transparent
        );
    }
}

@keyframes borderLight {
    0% {
        top: -40%;
        opacity: 0;
    }
    30% {
        opacity: 1;
    }
    70% {
        opacity: 1;
    }
    100% {
        top: 120%;
        opacity: 0;
    }
}

/* header */

.auth-header {
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    width: 130px;
    margin-bottom: 18px;
}

.auth-header h1 {
    font-size: 36px;
    margin-bottom: 10px;
    font-weight: 900;
    font-family: "Peyda-Black";
}

.shop-name {
    font-size: 17px;
    color: #8d8d8d;
    font-family: "Peyda-Black";
}

@media (max-width: 800px) {
    .auth-header h1 {
        font-size: 30px;
        margin-bottom: 10px;
        font-weight: 900;
        font-family: "Peyda-Black";
    }

    .shop-name {
        font-size: 17px;
        color: #8d8d8d;
        font-family: "Peyda-Black";
    }
}

/* form */

.auth-form {
    width: 100%;
    margin-bottom: 30px;
}

.input-group {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
}

.input-group label {
    font-size: 17px;
    margin-bottom: 8px;
    color: #bfbfbf;
}

/* inputs */

.input-group input {
    width: 100%;
    height: 48px;
    border-radius: 10px !important;
    border: 1px solid #2a2a2a;
    padding: 0 20px;
    letter-spacing: 7px;
    font-size: 16px;
    background: #141414;
    color: #fff;
    transition: all 0.25s ease;
    text-align: left;
}

.input-group input:focus {
    outline: none;
    border-color: #ffffff;
    background: #1b1b1b;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.06);
}

/* support */

.support-text {
    font-size: 15px;
    color: #9a9a9a;
    margin-bottom: 26px;
}

.support-text a {
    color: #ffffff;
    text-decoration: none;
    border-bottom: 1px dashed #666;
    transition: 0.2s;
}

.support-text a:hover {
    opacity: 0.7;
}

/* button */

.login-btn {
    width: 100%;
    height: 50px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(45deg, #0df068, #30ff96);
    color: #000000;
    font-family: "moraba";
    font-weight: 700;
    font-size: 17px;
    cursor: pointer;
    margin-top: 35px;
    transition: all 0.25s ease;
}

.login-btn:hover {
    background: linear-gradient(125deg, #0df068, #6affb3);
    transform: translateY(-2px);
    box-shadow: 0 10px 35px #0df06845;
}

/* LEFT SIDE */

.auth-left {
    width: 60%;
    background:
        linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url("../images/bg/bg.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
}

/* CLOCK */

.clock-box {
    text-align: center;
    color: #fff;
    padding-top: 200px;
}

#clock {
    font-size: 90px;
    font-weight: 700;
    letter-spacing: 4px;
    font-family: "moraba";
}
#date {
    font-size: 22px;
    color: #d0d0d0;
    font-family: moraba;
}

/* MOBILE */

@media (max-width: 900px) {
    .auth-left {
        display: none;
    }

    .auth-right {
        width: 100%;
        padding: 40px;
    }

    .auth-form {
        max-width: 100%;
    }
}

.phone-progress {
    position: relative;
    width: 100%;
    height: 4px;
    background: #1c1c1c;
    border-radius: 4px;
    margin-top: 6px;
    overflow: hidden;
}

#phone-bar {
    position: absolute;
    left: 0; /* از چپ شروع کن */
    right: auto;
    width: 0%;
    height: 100%;
    background: #00ff88;
    transition: width 0.2s;
}

