:root{
    --primary: rgb(20,173,78);
    --pink: #B11D94;
    --label-color: #635C5C;
}
body{
    margin: 0;
    font-family: 'Poppins', sans-serif;
    height: 100%;
    width: 100%;
}
html {
    height: 100vw;
    width: 100vw;
    overflow: hidden;
}
.Container{
    position: absolute;
    width: 100vw;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.LoginContainer{
    position: absolute;
    left: 0;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.LoginWrapper{
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.Logo{
    width: fit-content;
    height: fit-content;
    margin-bottom: 10%;
}
.Logo svg{
    fill: var(--primary);
    width: 40px;
    height: 46px;
}
.HeadText p{
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 35px;
    line-height: 120%;
    text-align: center;
    letter-spacing: -0.02em;
    color:var(--primary);
}
.LoginForm {
    width: 350px;
    height: 100%;
}
.LoginForm form{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
}
form .InputContainer {
    width: 100%;
    position: relative;
}
form .InputContainer input {
    width: calc(100% - 30px);
    height: 50px;
    padding-inline: 14px;
    border-radius: 8px;
    border: 1px solid #C0C0CB;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
}
form .InputContainer .LoginEmailInput{
    margin-bottom: 18px;
}
.InputContainer input:focus{
    border: 1px solid var(--primary);
    outline: none;
}
.InputContainer>label{
    color:var(--label-color);
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 120%;
    letter-spacing: -0.02em;
}
.InputContainer input:focus+label{
    top: -15px;
}
form .SubmitButton{
    width: 100%;
    height: 55px;
    background-color: var(--primary);
    color: #fff;
    border: none;
    border-radius: 30px;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 700;
}
.FormButtons{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 35px;
    margin-top: 21px;
}
.FormButtons label{
    display: flex;
    align-items: center;
}
.FormButtons label span {
    color: var(--label-color);
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 120%;
    opacity: 0.65;
    margin-left: 9px;
}
.FormButtons .ForgotPasswordButton{
    color: var(--pink);
    background-color: transparent;
    text-decoration: none;
    border: none;
    padding: 0;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 120%;
}

.SlideContainer{
    position: absolute;
    right: 0;
    width: 50%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.SlideWrapper{
    border-radius: 12px;
    width: 95%;
    height: 95%;
}
.SwiperContent{
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background-color: var(--primary);
    position: relative;
}
.BgCircleContainer{
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    clip-path: inset(0 0 0 0 round 12px 12px 12px 12px);
    display: flex;
    align-items: center;
    justify-content: center;
}
.BgCircle{
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 500px;
    border: 230px solid white;
    transform: translateY(50%);
}
.swiper{
    width: 100%;
    height: 100%;
    position: absolute;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100%;
}
.IMG img{
    width: 100%;
    height: 100%;
    box-shadow: 7.20625px 15.1331px 52.6056px rgba(0, 0, 0, 0.25);
    border-radius: 32px;
    margin-bottom: 12px;
}
.SlideTextContainer{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 16px;
}
.SlideText{
    color: white;
    z-index: 9999;
}
.swiper-pagination-bullet{
    background: rgba(255, 255, 255, 0.7);
}
.swiper-pagination-bullet.swiper-pagination-bullet-active{
    background: rgba(255, 255, 255, 1);
}
.TradeMarkContainer{
    display: flex;
    justify-content: center;
    width: 50%;
    position: absolute;
    bottom: 16px;
}
.DrifterTradeMark{
    color: var(--label-color);
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 120%;
    opacity: 0.65;
}
.DTCheckbox {
    background: #eaeaee;
    border: 1px solid #c0c0cb;
    border-radius: 4px;
    accent-color: var(--pink);
}


@media (max-width: 480px) {
    .TradeMarkContainer{
        display: none;
    }
    .Container{
        flex-direction: column;
        overflow-x: hidden;
    }
    .LoginContainer{
        position: absolute;
        width: 100%;
        top: 45%;
        height: 55%;
        border-radius: 35px 35px 0 0;
        background-color: white;
        z-index: 9999999999;
        align-items: flex-start;
    }
    .LoginWrapper{
        width: 90%;
        padding-top: 22px;
    }
    .HeadText{
        margin-bottom: 8px;
    }
    .LoginForm{
        max-width: 345px;
    }
    .Logo{
        margin-bottom: 0;
    }
    .SlideContainer{
        top: 0;
        width: 100%;
        height: 48%;
        position: absolute;
    }
    .SlideContainer .SlideWrapper{
        width: 100%;
        height: 100%;
        border-radius: 0;
    }
    .SwiperContent{
        border-radius: 0;
    }
    .TradeMarkContainer{
        z-index: 9999999999;
        width: 100%;
        font-size: 12px;
        bottom: 15px;
    }
    form .InputContainer {
        width: 100%;
        position: relative;
    }
    form .InputContainer input {
        height: 55px;
        border-radius: 12px;
        border: 1px solid #C0C0CB;
        font-size: 16px !important;
        font-weight: 400;
        line-height: 19px;
        padding-left: 18px;
    }
    .InputContainer>label{
        color:var(--label-color);
        font-size: 16px;
        padding-left: 8px;
        transition: all 0.2s;
    }
    .InputContainer input:focus+label{
        top: -25px;
    }
    form .InputContainer .LoginEmailInput{
        margin-bottom: 18px;
    }
    .FormButtons{
        margin-top: 8px;
    }
    .swiper{
        width: 100%;
        height: 75%;
        position: absolute;
        top: 10%;
    }
    .swiper-slide {
        text-align: center;
        font-size: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 100%;
    }
    .IMG{
        max-height: 280px;
    }
    .IMG img{
        width: 65%;
        max-height: 280px;
    }
    .SlideText{
        font-size: 12px;
        padding-top: 0;
        margin-top: 0;
    }
    .BgCircleContainer{
        position: absolute;
        top: 0;
        width: 100%;
        height: 100%;
        clip-path: inset(0 0 0 0 round 12px 12px 12px 12px);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .BgCircle{
        position: absolute;
        width: 300px;
        height: 300px;
        border-radius: 300px;
        border: 150px solid white;
        transform: translateY(50%);
    }
    .swiper-pagination {
        margin-bottom: -15px;
    }
}

@media (min-width: 768px) and (max-width: 1200px) {
    .text {
        font-size: 16px;
    }
}
.redirect{
    font-size: 14px;
    margin-bottom: 10px;
    margin-top:10px;
    color:#1a1a1a;
}
.redirect a{
    color: var(--pink);
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}
.alert-dismissible {
    padding-right: 4rem;
}
.alert {
    margin-top: 10px;
    position: relative;
    padding: 0.75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
}
.alert-dismissible .close {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.75rem 1.25rem;
    color: inherit;
}
[type=button]:not(:disabled), [type=reset]:not(:disabled), [type=submit]:not(:disabled), button:not(:disabled) {
    cursor: pointer;
}
button.close {
    padding: 0;
    background-color: transparent;
    border: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.close {
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .5;
}

button.close {
    -webkit-appearance: button;
}
.sr-only{
    display: none;
}

.hidden{
    display: none;
}