/* ================= FOOTER ================= */

.footer{
    width: 100%;
    background: #000000;
    padding: 60px 24px 30px;
}

.footer_container{
    max-width: 1250px;
    margin: auto;
}

/* ================= LOGO ================= */

.footer_logo img{
    width: 170px;
}

/* ================= DESCRIPTION ================= */

.footer_description{
    max-width: 560px;
    margin-top: 22px;
}

.footer_description p{
    color: #8C8C9A;
    font-size: 15px;
    line-height: 1.8;
    font-weight: 400;
}

/* ================= GRID ================= */

.footer_grid{
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
}

/* ================= COLUMN ================= */

.footer_column h3{
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 22px;
}

.footer_column a{
    display: block;
    text-decoration: none;
    color: #8C8C9A;
    font-size: 15px;
    margin-bottom: 16px;
    transition: 0.3s ease;
    line-height: 1.6;
}

.footer_column a:hover{
    color: #ffffff;
}

.footer_address{
    color: #8C8C9A;
    font-size: 15px;
    line-height: 1.7;
    margin-top: 10px;
}

/* ================= SOCIALS ================= */

.footer_socials{
    display: flex;
    gap: 12px;
    margin-bottom: 8px;
}

.footer_socials a{
    width: auto;
    margin-bottom: 0;
}

.footer_socials i{
    color: #8C8C9A;
    font-size: 24px;
    transition: 0.3s ease;
}

.footer_socials i:hover{
    color: #ffffff;
}

/* ================= BOTTOM ================= */

.footer_bottom{
    margin-top: 50px;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 22px;
    text-align: center;
}

.footer_bottom p{
    color: #8C8C9A;
    font-size: 14px;
    line-height: 1.7;
}

/* ================= TABLET ================= */

@media (max-width: 768px){

    .footer{
        padding: 50px 22px 25px;
    }

    .footer_grid{
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }

    .footer_logo img{
        width: 150px;
    }
}

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

@media (max-width: 480px){

    .footer{
        padding: 45px 18px 25px;
    }

    .footer_logo img{
        width: 140px;
    }

    .footer_description{
        margin-top: 18px;
    }

    .footer_description p{
        font-size: 14px;
        line-height: 1.7;
    }

    .footer_grid{
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
        margin-top: 40px;
    }

    .footer_column h3{
        font-size: 16px;
        margin-bottom: 18px;
    }

    .footer_column a,
    .footer_address{
        font-size: 14px;
        margin-bottom: 12px;
    }

    .footer_socials{
        gap: 10px;
        margin-bottom: 6px;
    }

    .footer_socials i{
        font-size: 21px;
    }

    .footer_bottom{
        margin-top: 40px;
        padding-top: 18px;
    }

    .footer_bottom p{
        font-size: 13px;
    }
}


















/* ================= SERVICES PAGE ================= */

.services_hero{
    position: relative;
    height: 450px;
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    padding: 20px;
}

.services_hero::before{
    content: '';
    position: absolute;
    width: calc(100% - 4rem);
    height: 85%;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: url('/images/sunset.jpeg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 28px;
    z-index: -2;
}

.services_hero::after{
    content: '';
    position: absolute;
    width: calc(100% - 4rem);
    height: 85%;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.55);
    border-radius: 28px;
    z-index: -1;
}

.services_hero_text{
    max-width: 750px;
    padding: 4rem 5rem;
    color: #ffffff;
}

.services_hero_text h1{
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -1px;
    line-height: 1.1;
}

.services_hero_text p{
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
    max-width: 650px;
}

/* ================= SERVICES BODY ================= */

.services_page_section{
    width: 100%;
    padding: 70px 24px;
    display: flex;
    justify-content: center;
    background: #ffffff;
}

.services_page_container{
    width: 100%;
    max-width: 1200px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

/* ================= CARD ================= */

.service_page_card{
    background: #ffffff;
    border-radius: 22px;
    padding: 30px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.05);
    transition: 0.4s ease;
    border: 1px solid #EAECF0;
}

.service_page_card:hover{
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* ================= ICON ================= */

.service_icon{
    width: 58px;
    height: 58px;
    background: rgba(75, 6, 135, 0.08);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}

.service_icon i{
    font-size: 24px;
    color: #4B0687;
}

/* ================= TEXT ================= */

.service_page_card h2{
    font-size: 22px;
    font-weight: 700;
    color: #101828;
    margin-bottom: 14px;
    line-height: 1.4;
}

.service_page_card p{
    font-size: 15px;
    line-height: 1.8;
    color: #475467;
    font-weight: 400;
}

/* ================= TABLET ================= */

@media (max-width: 768px){

    .services_hero{
        height: 400px;
        padding: 0;
    }

    .services_hero::before,
    .services_hero::after{
        width: 100%;
        border-radius: 0;
    }

    .services_hero_text{
        padding: 2rem;
    }

    .services_hero_text h1{
        font-size: 40px;
    }

    .services_hero_text p{
        font-size: 16px;
    }

    .services_page_section{
        padding: 55px 20px;
    }

    .services_page_container{
        gap: 20px;
    }

    .service_page_card{
        padding: 26px;
    }

    .service_page_card h2{
        font-size: 20px;
    }

    .service_page_card p{
        font-size: 14px;
    }
}

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

@media (max-width: 480px){

    .services_hero{
        height: 350px;
    }

    .services_hero_text{
        padding: 1.5rem;
    }

    .services_hero_text h1{
        font-size: 34px;
    }

    .services_hero_text p{
        font-size: 15px;
        line-height: 1.7;
    }

    .services_page_section{
        padding: 45px 18px;
    }

    .services_page_container{
        grid-template-columns: 1fr;
    }

    .service_page_card{
        padding: 24px;
        border-radius: 20px;
    }

    .service_icon{
        width: 52px;
        height: 52px;
        border-radius: 16px;
    }

    .service_icon i{
        font-size: 22px;
    }

    .service_page_card h2{
        font-size: 18px;
    }

    .service_page_card p{
        font-size: 14px;
        line-height: 1.7;
    }
}






























/* ================= PRIVACY POLICY PAGE ================= */

.privacy_hero{
    position: relative;
    height: 450px;
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    padding: 20px;
}

.privacy_hero::before{
    content: '';
    position: absolute;
    width: calc(100% - 4rem);
    height: 85%;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: url('/images/sunset.jpeg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 28px;
    z-index: -2;
}

.privacy_hero::after{
    content: '';
    position: absolute;
    width: calc(100% - 4rem);
    height: 85%;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.55);
    border-radius: 28px;
    z-index: -1;
}

.privacy_hero_text{
    max-width: 750px;
    padding: 4rem 5rem;
    color: #ffffff;
}

.privacy_hero_text h1{
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -1px;
    line-height: 1.1;
}

.privacy_hero_text p{
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
    max-width: 650px;
}

/* ================= CONTENT ================= */

.privacy_section{
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 70px 24px;
    background: #ffffff;
}

.privacy_container{
    width: 100%;
    max-width: 900px;
}

.privacy_block{
    margin-bottom: 45px;
}

.privacy_block h2{
    font-size: 28px;
    font-weight: 700;
    color: #101828;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

.privacy_block p{
    font-size: 15px;
    line-height: 1.9;
    color: #475467;
    font-weight: 400;
}

/* ================= LIST ================= */

.privacy_list{
    margin-top: 22px;
}

.privacy_list div{
    font-size: 15px;
    font-weight: 500;
    color: #344054;
    padding: 14px 0;
    border-bottom: 1px solid #EAECF0;
}

/* ================= TABLET ================= */

@media (max-width: 768px){

    .privacy_hero{
        height: 400px;
        padding: 0;
    }

    .privacy_hero::before,
    .privacy_hero::after{
        width: 100%;
        border-radius: 0;
    }

    .privacy_hero_text{
        padding: 2rem;
    }

    .privacy_hero_text h1{
        font-size: 40px;
    }

    .privacy_hero_text p{
        font-size: 16px;
    }

    .privacy_section{
        padding: 55px 20px;
    }

    .privacy_block{
        margin-bottom: 38px;
    }

    .privacy_block h2{
        font-size: 24px;
    }

    .privacy_block p{
        font-size: 14px;
    }

    .privacy_list div{
        font-size: 14px;
    }
}

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

@media (max-width: 480px){

    .privacy_hero{
        height: 350px;
    }

    .privacy_hero_text{
        padding: 1.5rem;
    }

    .privacy_hero_text h1{
        font-size: 34px;
    }

    .privacy_hero_text p{
        font-size: 15px;
        line-height: 1.7;
    }

    .privacy_section{
        padding: 45px 18px;
    }

    .privacy_block{
        margin-bottom: 32px;
    }

    .privacy_block h2{
        font-size: 21px;
        margin-bottom: 14px;
    }

    .privacy_block p{
        font-size: 14px;
        line-height: 1.8;
    }

    .privacy_list{
        margin-top: 18px;
    }

    .privacy_list div{
        font-size: 14px;
        padding: 12px 0;
    }
}















/* ================= TERMS OF SERVICE PAGE ================= */

.terms_hero{
    position: relative;
    height: 450px;
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    padding: 20px;
}

.terms_hero::before{
    content: '';
    position: absolute;
    width: calc(100% - 4rem);
    height: 85%;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: url('/images/sunset.jpeg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 28px;
    z-index: -2;
}

.terms_hero::after{
    content: '';
    position: absolute;
    width: calc(100% - 4rem);
    height: 85%;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.55);
    border-radius: 28px;
    z-index: -1;
}

.terms_hero_text{
    max-width: 750px;
    padding: 4rem 5rem;
    color: #ffffff;
}

.terms_hero_text h1{
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -1px;
    line-height: 1.1;
}

.terms_hero_text p{
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
    max-width: 650px;
}

/* ================= CONTENT ================= */

.terms_section{
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 70px 24px;
    background: #ffffff;
}

.terms_container{
    width: 100%;
    max-width: 900px;
}

.terms_block{
    margin-bottom: 45px;
}

.terms_block h2{
    font-size: 28px;
    font-weight: 700;
    color: #101828;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

.terms_block p{
    font-size: 15px;
    line-height: 1.9;
    color: #475467;
    font-weight: 400;
}

/* ================= LIST ================= */

.terms_list{
    margin-top: 22px;
}

.terms_list div{
    font-size: 15px;
    font-weight: 500;
    color: #344054;
    padding: 14px 0;
    border-bottom: 1px solid #EAECF0;
}

/* ================= TABLET ================= */

@media (max-width: 768px){

    .terms_hero{
        height: 400px;
        padding: 0;
    }

    .terms_hero::before,
    .terms_hero::after{
        width: 100%;
        border-radius: 0;
    }

    .terms_hero_text{
        padding: 2rem;
    }

    .terms_hero_text h1{
        font-size: 40px;
    }

    .terms_hero_text p{
        font-size: 16px;
    }

    .terms_section{
        padding: 55px 20px;
    }

    .terms_block{
        margin-bottom: 38px;
    }

    .terms_block h2{
        font-size: 24px;
    }

    .terms_block p{
        font-size: 14px;
    }

    .terms_list div{
        font-size: 14px;
    }
}

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

@media (max-width: 480px){

    .terms_hero{
        height: 350px;
    }

    .terms_hero_text{
        padding: 1.5rem;
    }

    .terms_hero_text h1{
        font-size: 34px;
    }

    .terms_hero_text p{
        font-size: 15px;
        line-height: 1.7;
    }

    .terms_section{
        padding: 45px 18px;
    }

    .terms_block{
        margin-bottom: 32px;
    }

    .terms_block h2{
        font-size: 21px;
        margin-bottom: 14px;
    }

    .terms_block p{
        font-size: 14px;
        line-height: 1.8;
    }

    .terms_list{
        margin-top: 18px;
    }

    .terms_list div{
        font-size: 14px;
        padding: 12px 0;
    }
}















/* ================= ABOUT PAGE ================= */

.about_top{
    margin-top: 0;
    position: relative;
    height: 450px;
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    padding: 20px;
}

.about_top::before{
    content: '';
    position: absolute;
    width: calc(100% - 4rem);
    height: 85%;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: url('/images/sunset.jpeg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 28px;
    z-index: -2;
}

.about_top::after{
    content: '';
    position: absolute;
    width: calc(100% - 4rem);
    height: 85%;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.55);
    border-radius: 28px;
    z-index: -1;
}

.about_toptext{
    max-width: 750px;
    padding: 4rem 5rem;
    color: #ffffff;
}

.about_toptext h1{
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -1px;
    line-height: 1.1;
}

.about_toptext p{
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
    max-width: 650px;
}

/* ================= ABOUT CONTENT ================= */

.about_contents{
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 70px 24px;
    background: #ffffff;
}

.about_texts{
    width: 100%;
    max-width: 900px;
}

.about_texts p{
    font-size: 15px;
    line-height: 1.95;
    color: #475467;
    font-weight: 400;
    margin-bottom: 30px;
}

.about_texts h2{
    font-size: 28px;
    font-weight: 700;
    color: #101828;
    margin-bottom: 22px;
    letter-spacing: -0.5px;
}

/* ================= SERVICES LIST ================= */

.services-list{
    margin-bottom: 35px;
}

.services-list div{
    font-size: 15px;
    font-weight: 500;
    color: #344054;
    padding: 14px 0;
    border-bottom: 1px solid #EAECF0;
}

/* ================= TABLET ================= */

@media (max-width: 768px){

    .about_top{
        height: 400px;
        padding: 0;
    }

    .about_top::before,
    .about_top::after{
        width: 100%;
        border-radius: 0;
    }

    .about_toptext{
        padding: 2rem;
    }

    .about_toptext h1{
        font-size: 40px;
    }

    .about_toptext p{
        font-size: 16px;
    }

    .about_contents{
        padding: 55px 20px;
    }

    .about_texts p{
        font-size: 14px;
    }

    .about_texts h2{
        font-size: 24px;
    }

    .services-list div{
        font-size: 14px;
    }
}

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

@media (max-width: 480px){

    .about_top{
        height: 350px;
    }

    .about_toptext{
        padding: 1.5rem;
    }

    .about_toptext h1{
        font-size: 34px;
    }

    .about_toptext p{
        font-size: 15px;
        line-height: 1.7;
    }

    .about_contents{
        padding: 45px 18px;
    }

    .about_texts p{
        font-size: 14px;
        line-height: 1.85;
    }

    .about_texts h2{
        font-size: 21px;
        margin-bottom: 16px;
    }

    .services-list{
        margin-bottom: 28px;
    }

    .services-list div{
        font-size: 14px;
        padding: 12px 0;
    }
}























/* ================= CONTACT PAGE ================= */

.contact_hero{
    position: relative;
    height: 450px;
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    padding: 20px;
}

.contact_hero::before{
    content: '';
    position: absolute;
    width: calc(100% - 4rem);
    height: 85%;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: url('/images/sunset.jpeg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 28px;
    z-index: -2;
}

.contact_hero::after{
    content: '';
    position: absolute;
    width: calc(100% - 4rem);
    height: 85%;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.55);
    border-radius: 28px;
    z-index: -1;
}

.contact_hero_text{
    max-width: 750px;
    padding: 4rem 5rem;
    color: #ffffff;
}

.contact_hero_text h1{
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -1px;
    line-height: 1.1;
}

.contact_hero_text p{
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
    max-width: 650px;
}

/* ================= CONTACT BODY ================= */

.contact_section{
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 28px;
    padding: 70px 24px;
    flex-wrap: wrap;
    background: #ffffff;
}

/* ================= INFO BOX ================= */

.contact_info_box{
    flex: 1;
    max-width: 400px;
    background: #4B0687;
    padding: 35px;
    border-radius: 24px;
    color: white;
}

.contact_info_box h2{
    font-size: 28px;
    margin-bottom: 18px;
}

.contact_info_box p{
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.85);
}

.contact_info_item{
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.contact_info_item i{
    font-size: 20px;
}

.contact_info_item span{
    font-size: 15px;
}

/* ================= FORM BOX ================= */

.contact_form_box{
    flex: 1;
    max-width: 600px;
    background: #ffffff;
    padding: 35px;
    border-radius: 24px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.05);
    border: 1px solid #EAECF0;
}

.contact_form_box h2{
    font-size: 28px;
    margin-bottom: 24px;
    color: #101828;
}

/* ================= INPUTS ================= */

.input_group{
    margin-bottom: 18px;
}

.input_group input,
.input_group textarea{
    width: 100%;
    padding: 16px;
    border: 1px solid #D0D5DD;
    border-radius: 16px;
    font-size: 15px;
    outline: none;
    transition: 0.3s ease;
    background: #F9FAFB;
}

.input_group input:focus,
.input_group textarea:focus{
    border-color: #4B0687;
    background: #ffffff;
}

/* ================= BUTTON ================= */

.contact_btn{
    width: 100%;
    height: 55px;
    border: none;
    border-radius: 16px;
    background: #4B0687;
    color: white;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.contact_btn:hover{
    background: #2f0454;
}

/* ================= TABLET ================= */

@media (max-width: 768px){

    .contact_hero{
        height: 400px;
        padding: 0;
    }

    .contact_hero::before,
    .contact_hero::after{
        width: 100%;
        border-radius: 0;
    }

    .contact_hero_text{
        padding: 2rem;
    }

    .contact_hero_text h1{
        font-size: 40px;
    }

    .contact_hero_text p{
        font-size: 16px;
    }

    .contact_section{
        padding: 55px 20px;
    }

    .contact_info_box,
    .contact_form_box{
        padding: 28px;
    }

    .contact_info_box h2,
    .contact_form_box h2{
        font-size: 24px;
    }
}

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

@media (max-width: 480px){

    .contact_hero{
        height: 350px;
    }

    .contact_hero_text{
        padding: 1.5rem;
    }

    .contact_hero_text h1{
        font-size: 34px;
    }

    .contact_hero_text p{
        font-size: 15px;
        line-height: 1.7;
    }

    .contact_section{
        padding: 45px 18px;
    }

    .contact_info_box,
    .contact_form_box{
        padding: 24px;
        border-radius: 20px;
    }

    .contact_info_box h2,
    .contact_form_box h2{
        font-size: 21px;
    }

    .contact_info_box p,
    .contact_info_item span{
        font-size: 14px;
    }

    .input_group input,
    .input_group textarea{
        font-size: 14px;
        padding: 14px;
    }

    .contact_btn{
        height: 50px;
        font-size: 14px;
    }
}

























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

.login_page{
    width: 100%;
    min-height: 100vh;
    padding: 120px 24px 70px;
    background: #F9FAFB;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login_container{
    width: 100%;
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    border-radius: 30px;
    background: #ffffff;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

/* ================= LEFT SIDE ================= */

.login_left{
    background: linear-gradient(
        135deg,
        #4B0687,
        #2F0454
    );
    padding: 70px;
    display: flex;
    align-items: center;
}

.login_left_content img{
    width: 180px;
    margin-bottom: 40px;
}

.login_left_content h1{
    font-size: 52px;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 700;
}

.login_left_content p{
    font-size: 17px;
    line-height: 1.9;
    color: rgba(255,255,255,0.88);
    max-width: 420px;
}

/* ================= RIGHT SIDE ================= */

.login_right{
    padding: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login_card{
    width: 100%;
    max-width: 430px;
}

.login_card h2{
    font-size: 40px;
    color: #101828;
    margin-bottom: 10px;
    font-weight: 700;
}

.login_subtext{
    font-size: 15px;
    color: #667085;
    margin-bottom: 35px;
}

/* ================= INPUTS ================= */

.login_input_group{
    margin-bottom: 22px;
}

.login_input_group label{
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    color: #344054;
    font-weight: 500;
}

.login_input_group input{
    width: 100%;
    height: 58px;
    border: 1px solid #D0D5DD;
    border-radius: 16px;
    padding: 0 18px;
    font-size: 15px;
    outline: none;
    background: #F9FAFB;
    transition: 0.3s ease;
}

.login_input_group input:focus{
    border-color: #4B0687;
    background: #ffffff;
}

/* ================= PASSWORD TOP ================= */

.password_top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.password_top a{
    font-size: 14px;
    color: #4B0687;
    text-decoration: none;
}

/* ================= REMEMBER ================= */

.remember_box{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
}

.remember_box label{
    font-size: 14px;
    color: #344054;
}

/* ================= BUTTON ================= */

.login_btn{
    width: 100%;
    height: 58px;
    border: none;
    border-radius: 16px;
    background: #4B0687;
    color: white;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.login_btn:hover{
    background: #2F0454;
}

/* ================= REGISTER ================= */

.register_text{
    text-align: center;
    margin-top: 28px;
    font-size: 14px;
    color: #667085;
}

.register_text a{
    color: #4B0687;
    text-decoration: none;
    font-weight: 600;
}

/* ================= TABLET ================= */

@media (max-width: 768px){

    .login_container{
        grid-template-columns: 1fr;
    }

    .login_left{
        padding: 50px 35px;
    }

    .login_left_content h1{
        font-size: 40px;
    }

    .login_right{
        padding: 45px 30px;
    }
}

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

@media (max-width: 480px){

    .login_page{
        padding: 100px 18px 50px;
    }

    .login_container{
        border-radius: 22px;
    }

    .login_left{
        padding: 40px 24px;
    }

    .login_left_content img{
        width: 140px;
        margin-bottom: 30px;
    }

    .login_left_content h1{
        font-size: 34px;
    }

    .login_left_content p{
        font-size: 15px;
    }

    .login_right{
        padding: 35px 22px;
    }

    .login_card h2{
        font-size: 30px;
    }

    .login_input_group input{
        height: 54px;
        font-size: 14px;
    }

    .login_btn{
        height: 54px;
        font-size: 14px;
    }
}




/* ================= PASSWORD TOGGLE ================= */

.password_wrapper{
    position: relative;
}

.password_wrapper input{
    padding-right: 50px;
}

.toggle_password{
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    color: #98A2B3;
    cursor: pointer;
    transition: 0.3s ease;
}

.toggle_password:hover{
    color: #4B0687;
}






























/* ================= SIGNUP PAGE ================= */

.signup_page{
    width: 100%;
    min-height: 100vh;
    padding: 120px 24px 70px;
    background: #F9FAFB;
    display: flex;
    justify-content: center;
    align-items: center;
}

.signup_container{
    width: 100%;
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    border-radius: 30px;
    background: #ffffff;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

/* LEFT */

.signup_left{
    background: linear-gradient(135deg,#4B0687,#2F0454);
    padding: 70px;
    display: flex;
    align-items: center;
}

.signup_left_content img{
    width: 180px;
    margin-bottom: 40px;
}

.signup_left_content h1{
    font-size: 48px;
    color: #fff;
    margin-bottom: 24px;
}

.signup_left_content p{
    font-size: 16px;
    line-height: 1.9;
    color: rgba(255,255,255,0.88);
}

/* RIGHT */

.signup_right{
    padding: 60px;
}

.signup_card{
    width: 100%;
    max-width: 430px;
}

/* PROGRESS */

.progress_container{
    display: flex;
    align-items: center;
    margin-bottom: 35px;
}

.progress_step{
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #E4E7EC;
    color: #667085;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.progress_step.active{
    background: #4B0687;
    color: white;
}

.progress_step.completed{
    background: #12B76A;
    color: white;
}

.progress_line{
    flex: 1;
    height: 2px;
    background: #E4E7EC;
}

/* TEXT */

.signup_card h2{
    font-size: 36px;
    margin-bottom: 10px;
}

.signup_subtext{
    font-size: 15px;
    color: #667085;
    margin-bottom: 35px;
}

/* FORM */

.form_step{
    display: none;
}

.active_step{
    display: block;
}

.signup_input_group{
    margin-bottom: 22px;
}

.signup_input_group label{
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 500;
}

.signup_input_group input{
    width: 100%;
    height: 58px;
    border: 1px solid #D0D5DD;
    border-radius: 16px;
    padding: 0 18px;
    font-size: 15px;
    background: #F9FAFB;
    outline: none;
}

.signup_input_group input:focus{
    border-color: #4B0687;
}

/* PASSWORD */

.password_wrapper{
    position: relative;
}

.password_wrapper input{
    padding-right: 50px;
}

.toggle_password{
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    color: #98A2B3;
    cursor: pointer;
}

/* REMEMBER */

.remember_box{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
}

/* BUTTONS */

.signup_btn,
.back_btn{
    height: 56px;
    border: none;
    border-radius: 16px;
    padding: 0 28px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}

.signup_btn{
    background: #4B0687;
    color: white;
}

.back_btn{
    background: #F2F4F7;
}

.button_group{
    display: flex;
    gap: 12px;
}

/* LOGIN */

.register_text{
    margin-top: 28px;
    font-size: 14px;
    text-align: center;
}

.register_text a{
    color: #4B0687;
    font-weight: 600;
    text-decoration: none;
}

/* MOBILE */

@media (max-width: 768px){

    .signup_container{
        grid-template-columns: 1fr;
    }

    .signup_left{
        padding: 45px 30px;
    }

    .signup_right{
        padding: 40px 25px;
    }

}

@media (max-width: 480px){

    .signup_page{
        padding: 100px 18px 50px;
    }

    .signup_left_content h1{
        font-size: 34px;
    }

    .signup_right{
        padding: 30px 20px;
    }

    .signup_card h2{
        font-size: 28px;
    }

}