:root{
    --mainBg: #070707;
    --oppAccents: #FDF5ED;
    --orangeaccents: #FF7E0C;
    --textBlack: black;
    --textWhite: white;
    --cardBg: #1A1A1A;
    --heroFont: 96px;
    --vBigFont: 72px;
    --secTitle: 64px;
    --cardTitle: 48px;
    --bigFont: 30px;
    --normFont: 24px;
    --smallFont: 18px;
    --vSmallFont: 16px;
    --LogoHeader: url(Images/LogoWhite.svg);
    --navBord: 3px solid #000;
    --whiteBg: white;
    --darkBg : #1A1A1A;
    --blackBg: black;
    --heroBlack: black;
    --heroWhite: rgb(0, 0, 0);
    --phoneGif: url(Images/PhoneGifAnim.gif);
    --heroGif: url(Images/DataGifAnim.gif);
    

    --textMuted: rgba(253, 245, 237, 0.70);
    --borderColor: #333;
    --shadowColor: rgba(255, 126, 12, 0.3);
    --hoverBg: #2A2A2A;
    --cardHoverBg: #FF7E0C;
    --scrollbarThumb: #FDF5ED;
    --footerBorder: #333;
    --inputBorder: rgba(0, 0, 0, 0.10);
    --lightboxBg: rgba(0, 0, 0, 0.95);
    --themeIcon: url(Images/Icons/Sun.svg)
}

.lightMode{
    --mainBg: #FFFFFF;
    --oppAccents: #1A1A1A;
    --orangeaccents: #FF7E0C;
    --textBlack: #1A1A1A;
    --textWhite: #FFFFFF;
    --cardBg: #F5F5F5;
    --heroFont: 96px;
    --vBigFont: 72px;
    --secTitle: 64px;
    --cardTitle: 48px;
    --bigFont: 30px;
    --normFont: 24px;
    --smallFont: 18px;
    --vSmallFont: 16px;
    --LogoHeader: url(Images/LogoBlack.svg);
    --navBord: 3px solid #E0E0E0;
    --whiteBg: #FFFFFF;
    --darkBg: #E8E8E8;
    --blackBg: #1A1A1A;
    --heroBlack: white;
    --heroWhite: rgb(255, 255, 255);
    --phoneGif: url(Images/PhoneGifAnimLight.gif);
    --heroGif: url(Images/DataGifAnimLight.gif);
    
    /* Additional light mode specific variables */
    --textMuted: rgba(26, 26, 26, 0.70);
    --borderColor: #E0E0E0;
    --shadowColor: rgba(0, 0, 0, 0.1);
    --hoverBg: #FFE5CC;
    --cardHoverBg: #FFD4A8;
    --scrollbarThumb: #1A1A1A;
    --footerBorder: #E0E0E0;
    --inputBorder: rgba(26, 26, 26, 0.15);
    --lightboxBg: rgba(255, 255, 255, 0.95);
    --themeIcon: url(Images/Icons/moon.svg)
}

#preloader{
    position: absolute;
    z-index: 9999;
}

#preloader img{
    position: fixed;
}

#preloader.hide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-thumb {
    background: var(--oppAccents);
    border-radius: 90px;
}

*{
    padding: 0;
    margin: 0;
}

html{
    scroll-behavior: smooth;
}

@font-face {
    font-family: 'Outfit';
    src: url(Fonts/Outfit-VariableFont_wght.ttf);
}

body{
    background: var(--mainBg);
    font-family: 'Outfit';
    position: relative;
}

main{
    position: relative;
}

header{
    padding: 60px 50px 50px 50px;
    position: absolute;
    top: 0;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    z-index: 99;
    justify-content: space-between;
}

.headerLeft{
    display: flex;
    align-items: center;
}

nav{
    padding: 16px 51px;
    border-radius: 90px;
    border: var(--navBord);
    display: flex;
    gap: 76px;
    position: fixed;
    margin-left: 280px;
    background: var(--oppAccents);
}

nav a{
    color: var(--textWhite);
    font-size: var(--bigFont);
    font-weight: 600;
    text-decoration: none;
    mix-blend-mode: difference;
}

.logo{
    width: 240px;
    height: 50px;
    background: var(--LogoHeader);
}

.headerRight{
    display: flex;
    gap: 20px;
}

#langBtn{
    padding: 18px 62px;
    background: transparent;
    border: var(--oppAccents) 3px solid;
    border-radius: 90px;
    color: var(--oppAccents);
    font-family: 'Outfit';
    font-size: var(--bigFont);
    font-weight: 600;
    transition: 200ms ease all;
    cursor: pointer;
}

#langBtn:hover, #loginBtn:hover{
    border-radius: 10px 10px 40px 40px;
}

#loginBtn{
    padding: 18px 62px;
    background: var(--oppAccents);
    border: var(--oppAccents) 3px solid;
    border-radius: 90px;
    color: var(--heroWhite);
    font-family: 'Outfit';
    font-size: var(--bigFont);
    font-weight: 600;
    text-decoration: none;
    transition: all 200ms linear;
}

#themeSwitcher{
    width: 40px;
    height: 40px;
    background: var(--themeIcon);
    background-size: cover;
    cursor: pointer;
}

#hero{
    width: 100%;
    height: 100vh;
    padding: 50px;
    box-sizing: border-box;
    position: relative;
}

.heroContent{
    width: 100%;
    height: 100%;
    background: var(--oppAccents);
    mask: url(Images/heroBg.svg) center;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.heroText{
    padding-left: 40px;
    width: 50%;
}

.heroTitle{
   font-size: var(--heroFont);
   font-weight: 600;
   color: var(--heroBlack);
   width: 70%;
}

.heroTitle span{
    color: var(--orangeaccents);
}

.heroSub{
    font-size: var(--bigFont);
    font-weight: 600;
    margin-top: 15px;
    color: var(--heroBlack);
}

.heroGif{
    width: 40%;
    height: 90%;
    background-image: var(--heroGif);
    background-position: center;
    background-size: cover;
}

.heroCta{
    padding: 16px 84px;
    background: var(--oppAccents);
    color: var(--heroWhite);
    font-size: var(--bigFont);
    font-weight: 600;
    text-decoration: none;
    position: absolute;
    border-radius: 90px;
    bottom: 50px;
    right: 50px;
    z-index: 6;
    transition: all 200ms ease;
}

.heroCta:hover{
    border-radius: 40px 40px 10px 10px;
}

#stats{
    padding: 50px;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.statCard{
    display: flex;
    position: relative;
    width: 100%;
    height: 382px;
    box-sizing: border-box;
}

.statOrd{
    position: absolute;
    left: 0;
    top: 0;
    color: var(--oppAccents);
    z-index: 5;
    font-size: var(--vBigFont);
    font-weight: 600;
    
}
.statCardContent{
    padding: 60px 50px;
    background-color: var(--cardBg);
    mask: url(Images/statBg.svg) center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.statNum{
    font-size: var(--vBigFont);
    color: var(--oppAccents);
    font-weight: 600;
    margin-top: 20px;
}

.statSub{
    width: 75%;
    text-align: center;
    font-size: var(--normFont);
    color: var(--textMuted);
    font-weight: 300;
    line-height: 24px;
    margin-top: 20px;
}


.secTitle {
    font-size: var(--secTitle);
    font-weight: 600;
    color: var(--oppAccents);
    text-align: center;
}

#scams{
    padding: 100px 50px;
    background: var(--mainBg);
}

.scamSteps {
    display: flex;
    justify-content: center;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    margin-top: 60px;
}

.scamStep {
    text-align: center;
    padding: 40px;
    border-radius: 20px;
    position: relative;;
    display: flex;
    flex-direction: column;
    align-items: center;
}


.stepIcon {
    margin-bottom: 30px;
    padding: 32px;
    background: var(--orangeaccents);
    width: fit-content;
    border-radius: 90px;

}

.stepNum{
    color: var(--textWhite);
    padding: 13px 20px;
    background-color: var(--orangeaccents);
    border-radius: 90px;
    margin-bottom: 10px;
}


.stepTitle {
    font-size: var(--bigFont);
    font-weight: 600;
    color: var(--oppAccents);
    margin-bottom: 15px;
}

.stepDesc {
    font-size: var(--smallFont);
    color: var(--textMuted);
    line-height: 1.6;
    width: 317px;
}


#scenarios {
    padding: 50px;
}

.sectionSub{
    color: rgba(253, 245, 237, 0.70);
    font-size: var(--normFont);
    font-weight: 300;
    text-align: center;
    margin-top: 25px;
}

.scenarioGrid {
    display: grid;
    grid-template-columns: repeat(2, minmax(300px, 1fr));
    grid-template-rows: repeat(2, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.scenarioCard {
    background: var(--cardBg);
    border-radius: 20px;
    padding: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.scenarioText {
    font-size: var(--smallFont);
    color: var(--oppAccents);
    line-height: 1.6;
    font-weight: 500;
}

.scenarioOption{
    display: flex;
    gap: 12px;
    padding: 19px;
    width: 100%;
    background-color: var(--mainBg);
    border-radius: 90px;
    box-sizing: border-box;
    color: rgba(253, 245, 237, 0.60);
    font-size: 16px;
    position: relative;
    cursor: pointer;
}

.wrong{
    color: #FF6467;
    margin-bottom: 10px;
}

.answerText{
    color: var(--textMuted);
}

.correct {
    color: #05DF72;
    margin-bottom: 10px;
}

#sQuestion1, #sQuestion2, #sQuestion3, #sQuestion4, #sQuestion5, #sQuestion6, #sQuestion7, #sQuestion8{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--orangeaccents);
    border-radius: 90px;
    display: flex;
    padding: 0 20px;
    box-sizing: border-box;
    align-items: center;
    font-size: var(--smallFont);
    font-weight: 500;
    color: var(--textBlack);
    opacity: 1;
    transition: all 300ms ease;
    border: none;
    text-align: start;
    cursor: pointer;
}

.sQuestion{
    position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--orangeaccents);
        border-radius: 90px;
        display: flex;
        padding: 0 20px;
        box-sizing: border-box;
        align-items: center;
        font-size: var(--smallFont);
        font-weight: 500;
        color: var(--textBlack);
        opacity: 1;
        transition: all 300ms ease;
        border: none;
        text-align: start;
        cursor: pointer;
        font-family: 'Outfit';
}

#factCards {
    padding: 50px;
    background: var(--mainBg);
}

.factsGrid {
    display: grid;
    grid-template-columns: repeat(3, minmax(300px, 1fr));
    grid-template-rows: repeat(2, minmax(100px, 1fr));
    gap: 25px;
    margin-top: 60px;
}

.factCard {
    background: var(--cardBg);
    border-radius: 40px;
    padding: 30px;
    text-align: center;
    transition: all 200ms ease;
    cursor: pointer;
}

.factCard:hover {
    background: var(--orangeaccents);
    border-radius: 15px 15px 40px 40px;
}

.factIcon {
    font-size: 48px;
    margin-bottom: 20px;
}

.factText {
    font-size: var(--vSmallFont);
    color: var(--oppAccents);
    line-height: 1.6;
}

.factCard:hover .factText {
    color: var(--textWhite);
}

#learnMore {
    padding: 50px;
    background: var(--mainBg);
    display: flex;
    align-items: center;
    gap: 50px;
}

.learnTitle{
    font-size: var(--secTitle);
    color: var(--oppAccents);
    font-weight: 600;
    margin-bottom: 30px;
}

.learnContent {
    max-width: 900px;
    margin: 30px auto 0 auto;
    background: var(--cardBg);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
}

.learnPreview {
    font-size: var(--smallFont);
    color: var(--oppAccents);
    line-height: 1.8;
    margin-bottom: 30px;
}

.learnExpanded {
    display: none;
    margin-top: 20px;
}

.learnExpanded.show {
    display: inline;
}

#readMoreBtn {
    padding: 15px 50px;
    background: var(--orangeaccents);
    color: var(--textWhite);
    border: none;
    border-radius: 90px;
    font-size: var(--smallFont);
    font-weight: 600;
    cursor: pointer;
    transition: all 200ms ease;
    font-family: 'Outfit';
}

#readMoreBtn:hover {
    background: var(--oppAccents);
    color: var(--textBlack);
    border-radius: 35px 35px 5px 5px;
}

.phoneGif{
    width: 40%;
    height: 700px;
    background: var(--phoneGif);
    background-position: center;
    background-size: cover;
}

#randomTip {
    padding: 100px 50px;
    background: var(--mainBg);
}

.tipCard {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--orangeaccents), #ff9f3d);
    padding: 50px;
    border-radius: 25px;
    text-align: center;
    position: relative;
}

.tipBadge {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: var(--oppAccents);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.tipTitle {
    font-size: var(--bigFont);
    font-weight: 700;
    color: var(--textWhite);
    margin-bottom: 20px;
    margin-top: 20px;
}

.tipText {
    font-size: var(--smallFont);
    color: var(--textWhite);
    line-height: 1.8;
    font-weight: 500;
}

#gallery{
    padding: 50px 50px;
    background: var(--mainBg);
}

.sliderContainer {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.sliderContent {
    overflow: hidden;
    flex: 1;
    border-radius: 20px;
}

.sliderTrack {
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    min-width: 100%;
    padding: 20px;
    height: 400px;
}

#slidePlaceholder1, #slidePlaceholder2, #slidePlaceholder3, #slidePlaceholder4{
    height: 100%;
    border-radius: 15px;
    display: flex;
    align-items: end;
    justify-content: start;
    font-size: var(--bigFont);
    color: var(--oppAccents);
    font-weight: 600;
    padding: 40px;
    box-sizing: border-box;
    background-size: cover;
    background-position: center;
}

#slidePlaceholder1{
    background: url(Images/Gal1.png);
    background-size: cover;
}

#slidePlaceholder2{
    background: url(Images/Gal2.jpg);
    background-size: cover;
}

#slidePlaceholder3 {
    background: url(Images/Gal3.jpg);
    background-size: cover;
}

#slidePlaceholder4 {
    background: url(Images/Gal4.jpg);
    background-size: cover;
}

.sliderBtn {
    width: 60px;
    height: 60px;
    background: var(--orangeaccents);
    color: var(--textWhite);
    border: none;
    border-radius: 50%;
    font-size: 32px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Outfit';
    display: flex;
    justify-content: center;
    align-items: center;
}

.sliderBtn:hover {
    background: var(--oppAccents);
    color: var(--textBlack);
    transform: scale(1.1);
}

.sliderDots {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    background: var(--cardBg);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--orangeaccents);
    transform: scale(1.3);
}

#contact{
    padding: 50px;
    display: flex;
    flex-direction: column;
}

.contactContent{
    display: flex;
    margin-top: 60px;
    gap: 50px;
}

.contactForm{
    background-color: var(--oppAccents);
    padding: 50px;
    border-radius: 40px;
    width: 100%;
}

form{
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.formTitle{
    font-size: var(--bigFont);
    font-weight: 600;
}

.inputContainer{
    display: flex;
    flex-direction: column;
    gap: 12px;
}

label{
    font-size: var(--vSmallFont);
    font-weight: 600;

}

#name, #email, #subject{
    background-color: var(--whiteBg);
    padding: 16px 25px;
    width: 100%;
    border: 2px solid rgba(0, 0, 0, 0.10);
    box-sizing: border-box;
    border-radius: 20px;
    font-family: 'Outfit';
    font-size: var(--vSmallFont);
}

#message{
    background-color: var(--whiteBg);
    padding: 16px 25px;
    width: 100%;
    border: 2px solid rgba(0, 0, 0, 0.10);
    box-sizing: border-box;
    border-radius: 20px;
    font-family: 'Outfit';
    font-size: var(--vSmallFont);
    height: 290px;
}

#sendBtn{
    padding: 20px;
    background-color: var(--orangeaccents);
    border-radius: 24px;
    text-align: center;
    font-size: var(--normFont);
    font-weight: 600;
    margin-top: 25px;
    cursor: pointer;
    transition: all 200ms ease;
    color: var(--textWhite);
}

#sendBtn:hover{
    border-radius: 5px 5px 20px 20px;
    background: var(--whiteBg);
    color: var(--orangeaccents);
    outline: 3px var(--orangeaccents) solid;
}

#lightBox{
    position: absolute;
    top:0;
    left:0;
    box-sizing: border-box;
    z-index: 9999;
    top: 100%;
}

#lightBoxImg1, #lightBoxImg2, #lightBoxImg3, #lightBoxImg4{
    width: 90%;
    height: 90%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: fixed;
    padding: 50px;
    box-sizing: border-box;
    display: none;
}

#lightBoxImg1{
    background-image: url(Images/Gal1.png);
    background-size: cover;
}
#lightBoxImg2{
    background-image: url(Images/Gal2.jpg);
    background-size: cover;
}
#lightBoxImg3{
    background-image: url(Images/Gal3.jpg);
    background-size: cover;
}
#lightBoxImg4{
    background-image: url(Images/Gal4.jpg);
    background-size: cover;
}

#closeBtn{
    width: 70px;
    position: absolute;
    right: 50px;
    cursor: pointer;
}

.contactCards{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.contactInfo{
    background: var(--cardBg);
    padding: 50px;
    border-radius: 40px;
}

.formTitle2{
    font-size: var(--secTitle);
    color: var(--oppAccents);
    font-weight: 600;
    
}

.infoDivs{
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.infoDiv{
    display: flex;
    gap: 20px;
    align-items: start;
}

.divTitle{
    color: var(--oppAccents);
    font-size: var(--normFont);
    font-weight: 600;
}

.divContent{
    color: var(--textMuted);
    font-size: var(--smallFont);
}

.report{
    padding: 50px;
    background: var(--orangeaccents);
    border-radius: 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.reportTitle{
    font-size: var(--secTitle);
    font-weight: 600;
    color: var(--textWhite);
}

.reportP{
    font-size: var(--vSmallFont);
    font-weight: 300;
    color: var(--textWhite);
    width: 70%;
}

.reportBtn{
    text-decoration: none;
    color: var(--orangeaccents);
    background-color: var(--whiteBg);
    padding: 16px;
    border-radius: 90px;
    font-size: var(--smallFont);
    font-weight: 600;
    width: fit-content;
    transition: all 200ms ease;
}

.reportBtn:hover{
    border-radius: 5px 5px 35px 35px;
}

footer {
    background: var(--cardBg);
    padding: 60px 50px 30px;
    border-top: 1px solid #333;
}

.footerContent {
    max-width: 1400px;
    margin: 0 auto;
}

.footerTop {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 40px;
}

.footerBrand {
    flex: 1;
    min-width: 250px;
}

.footerLogo {
    width: 240px;
    height: 50px;
    background: var(--LogoHeader);
    margin-bottom: 20px;
}

.footerSlogan {
    font-size: var(--smallFont);
    color: var(--textMuted);
    font-weight: 500;
}

.footerLinks {
    display: flex;
    gap: 80px;
    flex-wrap: wrap;
}

.footerColumn {
    display: flex;
    flex-direction: column;
    gap: 15px;
}


.fTitle {
    font-size: var(--smallFont);
    color: var(--oppAccents);
    font-weight: 600;
    margin-bottom: 10px;
}

.footerColumn a {
    color: var(--textMuted);
    text-decoration: none;
    font-size: var(--vSmallFont);
    transition: color 0.3s ease;
}

.footerColumn a:hover {
    color: var(--orangeaccents);
}

.socialIcons {
    display: flex;
    gap: 15px;
}

.socialIcon {
    width: 40px;
    height: 40px;
    background: var(--mainBg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--oppAccents);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.socialIcon:hover {
    background: var(--orangeaccents);
    transform: scale(1.1);
}

.footerBottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: var(--textMuted);
    font-size: var(--vSmallFont);
}

.scrollToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--orangeaccents);
    color: var(--textWhite);
    border: none;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
    opacity: 1;
    transition: all 0.3s ease;
    z-index: 1000;
    font-family: 'Outfit';
    display: flex;
    align-items: center;
    justify-content: center;
}

.scrollToTop.visible {
    opacity: 1;
    visibility: visible;
}

.scrollToTop:hover {
    background: var(--oppAccents);
    color: var(--textBlack);
    transform: scale(1.1);
}




/* ---------------- LOGIN PAGE ------------------------ */


.loginContainer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            padding: 50px;
            box-sizing: border-box;
        }

        .loginLeft {
            flex: 1;
            color: var(--textWhite);
        }

        .logoContainer {
            display: flex;
            align-items: center;
        }

        .logoIcon {
            width: 50px;
            height: 50px;
            background: var(--orangeaccents);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
        }

        .logoText {
            font-size: var(--bigFont);
            font-weight: 700;
            color: var(--textWhite);
        }

        .welcomeTitle {
            font-size: var(--heroFont);
            font-weight: 700;
            color: var(--textWhite);
            margin-bottom: 30px;
            line-height: 1.1;
        }

        .welcomeDesc {
            font-size: var(--smallFont);
            color: var(--textMuted);
            margin-bottom: 50px;
            line-height: 1.6;
            max-width: 500px;
        }

        .featureList {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .featureItem {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .featureIcon {
            width: 24px;
            height: 24px;
            background: var(--orangeaccents);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            flex-shrink: 0;
        }

        .featureText {
            font-size: var(--vSmallFont);
            color: var(--textMuted);
        }

        .loginRight {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .loginCard {
            background: var(--oppAccents);
            border-radius: 30px;
            padding: 50px;
        }

        .loginTitle {
            font-size: var(--cardTitle);
            font-weight: 700;
            color: var(--textBlack);
            margin-bottom: 10px;
        }

        .loginSubtitle {
            font-size: var(--vSmallFont);
            color: rgba(0, 0, 0, 0.6);
            margin-bottom: 30px;
        }

        .formGroup {
            margin-bottom: 20px;
        }

        .formLabel {
            display: block;
            font-size: var(--vSmallFont);
            font-weight: 600;
            color: var(--textBlack);
            margin-bottom: 8px;
        }

        .inputWrapper {
            position: relative;
            display: flex;
            align-items: center;
        }

        .inputIcon {
            position: absolute;
            left: 20px;
            color: rgba(0, 0, 0, 0.4);
            font-size: 18px;
        }

        .formInput {
            width: 100%;
            padding: 16px 20px 16px 20px;
            border: 2px solid rgba(0, 0, 0, 0.1);
            border-radius: 15px;
            font-size: var(--vSmallFont);
            font-family: 'Outfit', sans-serif;
            background: var(--whiteBg);
            transition: all 0.3s ease;
        }

        .formInput:focus {
            outline: none;
            border-color: var(--orangeaccents);
        }

        .formInput::placeholder {
            color: rgba(0, 0, 0, 0.4);
        }


        #signInBtn {
            width: 100%;
            padding: 18px;
            background: var(--orangeaccents);
            color: var(--textWhite);
            border: none;
            border-radius: 15px;
            font-size: var(--smallFont);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Outfit', sans-serif;
        }

        #signInBtn:hover {
            background: #e66f00;
            border-radius: 40px 40px 10px 10px;
        }

        .divider {
            text-align: center;
            margin: 25px 0;
            position: relative;
        }

        .divider::before,
        .divider::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 40%;
            height: 1px;
            background: rgba(0, 0, 0, 0.1);
        }

        .divider::before {
            left: 0;
        }

        .divider::after {
            right: 0;
        }

        .dividerText {
            font-size: var(--vSmallFont);
            color: rgba(0, 0, 0, 0.5);
        }

        .socialButtons {
            display: flex;
            gap: 15px;
            margin-bottom: 25px;
        }

        .socialBtn {
            flex: 1;
            padding: 15px;
            background: var(--whiteBg);
            border: 2px solid rgba(0, 0, 0, 0.1);
            border-radius: 12px;
            font-size: var(--vSmallFont);
            font-weight: 600;
            color: var(--textBlack);
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Outfit', sans-serif;
        }

        .socialBtn:hover {
            background: rgba(0, 0, 0, 0.05);
            border-color: rgba(0, 0, 0, 0.2);
            border-radius: 10px 10px 40px 40px;
        }

        .signUpText {
            text-align: center;
            font-size: var(--vSmallFont);
            color: rgba(0, 0, 0, 0.7);
        }

        .signUpLink {
            color: var(--orangeaccents);
            text-decoration: none;
            font-weight: 600;
        }

        .signUpLink:hover {
            text-decoration: underline;
        }

        .securityNotice {
            background: var(--cardBg);
            padding: 20px 25px;
            border-radius: 20px;
            display: flex;
            align-items: start;
            gap: 15px;
        }

        .securityIcon {
            width: 20px;
            height: 20px;
            background: var(--orangeaccents);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .securityText {
            font-size: 14px;
            color: var(--textMuted);
            line-height: 1.5;
        }

#errMsg{
    color: var(--orangeaccents);
    display: none;
}

.formButtons{
    display: flex;
    flex-direction: column;
    gap: 25px;
}

#formErrMsg{
    color: var(--orangeaccents);
    font-size: var(--normFont);
    display: none;
}

#formSuccessMsg{
    color: green;
    font-size: var(--normFont);
    display: none;
}