.welcome-logo-div{
    display: flex;
    justify-content: center;
    align-items: center; 
}
.welcome-logo-div img{
    height: 60px;
    filter: brightness(100);
}
/*  */
.welcome-body{
    background: radial-gradient(circle, rgba(74, 67, 129, 1) 0%, rgba(16,24,40,1) 80%); 
    height: 100vh;
    position: relative;
    overflow: hidden !important;
    padding-right: 3%;
    padding-left: 3%;
    padding-bottom: 10%;
    display: flex;

    justify-content: center;
    align-items: center; 
}
div[data-view-id="welcome-carousel"]{
    width: 100%;
}
div[data-view-id="welcome-carousel"] img{
    height: 40px;
    filter: brightness(100);
}
.welcome-carousel p{
    color: rgba(250, 250, 252, 1);
    font-family: Montserrat;
    font-size: 30px;
    font-weight: 600;
    line-height: 42px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}

.next-carousel-button{
    background: white;
    height: 50px;
    width: 50px;
    border: none;
    border-radius: 50%;
}
.login-carousel-button{
    background: white;
    border: none;
    border-radius: 40px;
    height: 50px;
    padding-left: 10px;
    padding-right: 10px;
}

.login-carousel-button span, .login-carousel-button i, .next-carousel-button i{
    color: black;
}

.welcome-carousel {
    position: absolute;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.welcome-carousel.hiddenLeft {
    opacity: 0;
    transform: translateX(-100%);
}
.welcome-carousel.hidden {
    opacity: 0;
    transform: translateX(+100%);
}

.welcome-carousel.visible {
    opacity: 1;
    transform: translateX(0);
}
.carousel-pointer-box{
    display: flex;
    align-items: center;
}
.carousel-pointer{
    height: 10px;
    width: 10px;
    background-color: white;
    margin: 3px;
    border-radius: 50%;
    opacity: 0.2;
}
.carousel-pointer.active{
    opacity: 1;
}
/* LOGIN */
div[data-view-id="login"]{
    padding-top: 50px;
    height: 100vh;
}
div[data-view-id="login"] h1{
    font-family: Montserrat;
    font-size: 30px;
    font-weight: 600;
    line-height: 32px;
    letter-spacing: -0.02em;
    text-align: center;

    
}
div[data-view-id="login"] h2{
    font-family: Open Sans;
    font-size: 16px;
    font-weight: 400;
    line-height: 25.6px;
    text-align: center;
}
.input-text{
    border: 1px solid rgba(227, 231, 235, 1);
    border-radius: 8px;
    width: 100%;
    padding: 2%;
}
div[data-view-id="login"] .new-account{
    color: rgba(69, 77, 85, 1);
    font-family: Open Sans;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}
div[data-view-id="login"] .new-account a{
    color: rgba(74, 67, 129, 1);
    font-family: Open Sans;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}