html,
body {
    background: linear-gradient(130deg, #B49CF9 0%, #7C5DD9 100%);
    font-family: 'IRANYekanXFaNum', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

* {
    box-sizing: border-box;
}

/* ---------- Global ---------- */

.txt-i {
    color: #767676;
    font-size: 12px;
    font-weight: 300;
    line-height: 20px;
}

.txt-i-ii {
    color: #A0A0A0;
    font-size: 12px;
    font-weight: 300;
    line-height: 20px;
}

.txt-ii {
    color: #767676;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}


.txt-ii-ii {
    color: #342E2E;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

.txt-ii-iii {
    color: #A0A0A0;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

.txt-ii-iv {
    color: #D3D3D3;
    font-size: 14px;
    font-weight: 300;
    line-height: 24px;
}

.txt-ii-v {
    color: #585858;
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
}

.txt-iii {
    color: #342E2E;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
}

.txt-iv {
    color: #342E2E;
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
}



.txt-uline-i {
    padding-bottom: 4px;
    border-bottom: 1px black solid;
    justify-content: center;
    align-items: center;
    gap: 10px;
    display: inline-flex;
}

.profile-i {
    width: 40px;
    height: 40px;
    left: 40px;
    top: 40px;
    position: absolute;
    transform: rotate(180deg);
    transform-origin: top left;
}

/* ---- button ---- */
.btn-i {
    height: 40px;
    padding: 8px 16px;
    background: #5CB800;
    border-radius: 100px;
    color: white;
    font-size: 16px;
    border: 0;
}

.btn-i:hover {
    color: white;
    background-color: #4C9800;
}

.btn-i .icon {
    display: none;
}

.btn-i:hover .icon {
    display: inline-block;
}

.btn-ii {
    background: #5CB800;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    border-radius: 50%;
}

.btn-ii:hover {
    background: #4C9800;
}

.btn-ii .icon {
    width: 22px;
}

/* ---- margin ---- */

.my-5 {
    margin-top: 5rem;
    margin-bottom: 5rem;
}

/* ---------- Layout ---------- */
.section-auth .auth {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 5rem;
}

/* ---------- Visual ---------- */
.section-auth .visual {
    width: 50%;
    display: block;
}

.section-auth .visual-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-auth .title {
    color: #DCD0FB;
    font-size: 72px;
    font-family: IRANYekanXFaNum;
    font-weight: 900;
    line-height: 88px;
    opacity: 0.6;
    text-align: right;
}

.section-auth .description {
    color: #DCD0FB;
    font-size: 20px;
    font-family: IRANYekanXFaNum;
    font-weight: 600;
    text-align: right;
}

.section-auth .image {
    text-align: center;
}

.section-auth .image img {
    width: 500px;
}

/* ---------- Form ---------- */
.section-auth .form-wrapper {
    width: 40%;
}

.section-auth .form-box {
    background: #fff;
    border-radius: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.section-auth .form-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.section-auth .form-title {
    color: #BDBDBD;
    font-size: 22px;
    font-weight: 500;
    line-height: 32px;
}

.section-auth .logo {
    width: 99px;
    height: 48px;
}

.section-auth .form-body {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 8rem 0;
}

.section-auth .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    direction: rtl;
}

.section-auth .form-label {
    display: flex;
    align-items: center;
    gap: 6px;
}

.section-auth .dot {
    width: 6px;
    height: 6px;
    background: #E02E2D;
    border-radius: 50%;
}

.section-auth .label-text {
    color: #767676;
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
}

.section-auth .input {
    height: 48px;
    padding: 8px 16px;
    background: #F1F1F1;
    border-radius: 100px;
    border: none;
    outline: none;
}

.section-auth .input::placeholder {
    color: #BDBDBD;
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
}

.section-auth .submit {
    height: 40px;
    min-width: 102px;
    padding: 8px 16px;
    background: #8B66F2;
    color: white;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    border: none;
    border-radius: 100px;
    cursor: pointer;
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
    .section-auth .visual {
        display: none;
    }

    .section-auth .form-wrapper {
        width: 100%;
    }

    .section-auth .form-box {
        padding: 30px 16px;
    }

    .section-auth .form-header {
        justify-content: center;
    }

    .section-auth .form-title {
        display: none;
    }
}

@media (min-width: 960px) {
    .section-auth .form-box {
        padding: 40px 35px;
    }
}

@media (min-width: 1200px) {
    .section-auth .form-wrapper {
        width: 35%;
    }

    .section-auth .form-box {
        padding: 40px 48px;
    }
}


/* ---------- Footer desktop ---------- */

.footer-dp {
    background: white;
    margin-top: 2rem;
    width: 100%;
    padding: 24px 44px 16px 44px;
    border-top: 1px #D3D3D3 solid;
}

.footer-dp .footer-content {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}


.footer-dp .ellipse {
    width: 6px;
    height: 6px;
    background: #DCD0FB;
    border-radius: 9999px;
}


.footer-dp .license {
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    display: flex;
}

.footer-dp .license .group {
    width: 96px;
    height: 96px;
    padding: 8px;
    border-radius: 12px;
    outline: 1px #E1E1E1 solid;
    outline-offset: -1px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    display: flex;
}

.footer-dp .license .license-img {
    width: 73.53px;
    height: 80px;
}

.footer-dp .footer-links {
    padding-top: 4px;
    padding-bottom: 4px;
    justify-content: flex-start;
    align-items: center;
    gap: 32px;
    display: inline-flex;
}

.footer-dp .footer-info {
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 16px;
    display: inline-flex;
}

.footer-dp .footer-text {
    justify-content: flex-end;
    align-items: flex-start;
    gap: 8px;
    display: inline-flex;
}

/* ---------- Media ---------- */

@media (min-width: 0px) {}

@media (min-width: 480px) {}

@media (min-width: 640px) {}

@media (min-width: 960px) {}

@media (min-width: 1200px) {}

@media (min-width: 1600px) {}