@import url('https://fonts.googleapis.com/css2?family=Inconsolata:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cabin:wght@400;500;600;700&display=swap');
@import "fonts.css";

:root {
    --footerHeight: 25vh;
}

.footerBox {
    position: relative;
    height: var(--footerHeight);
    width: 100%;
    background: #120E14;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    transition: all 0.1s;

    user-select: none;
}

.footerBox .footerLeftBox {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    height: 100%;
    margin-left: 10%;
}

.footerBox .footerLeftBox img {
    width: 9vw;
    /* height: 23vh; */
}

.footerBox .footerLeftBox .copyRightText {
    color: #fff;
    font-family: 'BentonSans';
    font-style: normal;
    font-weight: 400;
    font-size: 0.7em;
    /* line-height: 130%; */
    letter-spacing: 0.05em;
    width: max-content;
}

.footerBox .footerRightBox {
    box-sizing: border-box;
    /* height: 70%; */
    display: flex;
    align-items: flex-end;
    margin-right: 10%;
}

.footerBox .footerRightBox .footerLinks {
    color: #fff;
    display: flex;
    justify-content: space-between;
    gap: 35px;
    font-family: 'BentonSans';
    font-style: normal;
    font-weight: 400;
    font-size: 0.8em;
    width: 100%;
    white-space: nowrap;
    /* border: 1px solid #fff; */
    margin-bottom: 4vh;
}

.footerBox .footerRightBox .footerLinks span a {
    text-decoration: none;
    color: #fff;
}

.footerBox .footerRightBox .socialIcons {
    color: #fff;
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    font-size: 1.5em;
    padding-right: 20px;
    padding-bottom: 10px;
}

.footerBox .footerRightBox .socialIcons .ion-icon {
    position: relative;
}

@media (max-width:1000px) {

    /* --------------------- */
    .footerBox {
        flex-direction: column;
        gap: 1.5em;
    }

    .footerLeftBox {
        order: 2;
    }

    .footerBox .footerLeftBox {
        margin: 0px !important;
        align-items: center;
    }

    .footerRightBox {
        order: 1;
        margin: 0px !important;
        padding-top: 2em;
    }

    .footerBox .footerLeftBox img {
        display: none;

    }

    .footerBox .footerRightBox .footerLinks {
        text-align: center;
        justify-content: center;
        margin-bottom: 0 !important;
    }

}


@media (max-width: 420px) {
    .footerBox {
        height: 15vh;
    }

    .footerBox .footerRightBox .footerLinks {
        font-size: 3vw;
    }
}



/* --------------------------------- */

.UnRegUsersmainBox {
    position: relative;
    min-height: 100vh;
    background: black;
    display: flex;
    flex-direction: column;

}

.UnRegUsersmainBox .UncontentBox {
    height: calc(100vh - 150px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.UnRegUsersmainBox .UncontentBox .UnpagesName {
    /* border: 1px solid #Fff; */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;

}

.UnRegUsersmainBox .UncontentBox .UnpagesName h1 {
    color: #fff;
    cursor: pointer;
}

.UnRegUsersmainBox .UncontentBox .UniconWithLoginSignupButtonsBox {
    border: 1px solid #FF13EF;
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 15px 0px;
}

.UnRegUsersmainBox .UncontentBox .UniconWithLoginSignupButtonsBox ion-icon {
    color: #FF13EF;
    font-size: 5em;
}

.UnRegUsersmainBox .UncontentBox .UniconWithLoginSignupButtonsBox .Untext {
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 10px;
}

.UnRegUsersmainBox .UncontentBox .UniconWithLoginSignupButtonsBox .UnButtons {
    display: flex;
    gap: 5%;
}

.UnRegUsersmainBox .UncontentBox .UniconWithLoginSignupButtonsBox .UnButtons .UnloginButton {
    border: 1px solid #FF13EF;
    background: black;
    color: #FF13EF;
    padding: 5px 15px;
    border-radius: 18px;
    width: 30vw;
    font-weight: bold;
    cursor: pointer;
    outline: none;
}

.UnRegUsersmainBox .UncontentBox .UniconWithLoginSignupButtonsBox .UnButtons .UnsignupButton {
    border: 1px solid #FF13EF;
    background: #FF13EF;
    color: #fff;
    padding: 5px 15px;
    border-radius: 18px;
    width: 30vw;
    cursor: pointer;
    outline: none;
}

.UnfooterBox {
    /* border: 1px solid #Fff; */
    height: 150px;
    display: flex;
    justify-content: space-between;

    padding: 0 20px 20px 20px;
}

.UnRegUsersmainBox .UnfooterBox .UnlogoBox {
    /* border: 1px solid #fff; */
    display: flex;
    flex-direction: column;
    justify-content: flex-end;

}

.UnRegUsersmainBox .UnfooterBox .UnlogoBox img {
    width: 50%;
}

.UnRegUsersmainBox .UnfooterBox .UnpageslinkBox {
    /* border: 1px solid #fff; */
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 15px;
}

.UnRegUsersmainBox .UnfooterBox .UnpageslinkBox a {
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
    text-align: end;

    font-size: 0.7em;
}

.UnRegUsersmainBox .closePage {
    position: absolute;
    top: 0;
    right: 0;
    color: #fff;
    background: #FF13EF;
    padding: 3% 10%;
    cursor: pointer;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 20% 100%);
}

@media only screen and (max-height: 750px) {
    .UnRegUsersmainBox {
        /* background: red !important; */
    }



    .UnRegUsersmainBox .UncontentBox .UnpagesName {
        gap: 2px;
    }

    .UnRegUsersmainBox .UncontentBox .UnpagesName h1 {
        font-size: 2em;
    }

    .UnRegUsersmainBox .UncontentBox .UniconWithLoginSignupButtonsBox ion-icon {
        font-size: 4em;
    }

    .UnRegUsersmainBox .UncontentBox .UniconWithLoginSignupButtonsBox {
        padding: 6px 0px;

    }

    .UnRegUsersmainBox .UnfooterBox .UnpageslinkBox {
        gap: 8px;
    }

    .UnRegUsersmainBox .UnfooterBox .UnpageslinkBox a {
        white-space: nowrap;
        font-size: 0.6em;
    }
}

@media only screen and (max-height: 580px) {
    .UnRegUsersmainBox {
        /* background: green !important; */
    }

    .UnRegUsersmainBox .UncontentBox {
        justify-content: end;
    }

    .UnRegUsersmainBox .UncontentBox .UnpagesName h1 {
        font-size: 1.8em;
    }

    .UnRegUsersmainBox .UncontentBox .UniconWithLoginSignupButtonsBox ion-icon {
        font-size: 3em;
    }

    .UnRegUsersmainBox .UncontentBox .UniconWithLoginSignupButtonsBox .Untext {
        margin-bottom: 5px;
        font-size: 0.8em;
    }
}