@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

/* universal style */
body
{
    font-family: "Jost";
}
body section
{
    overflow: hidden;
}
a
{
    text-decoration: none;
    color: inherit;
}

/* main-section */


/* sign up form */
.form-section
{
    position: relative;
}
.form-section::before
{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(../images/body-bg-left.png);
    background-repeat: no-repeat;
    width: 350px;
    height: 100%;
    z-index: 0;
}
.form-section::after
{
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    background-image: url(../images/body-bg-right.png);
    background-repeat: no-repeat;
    width: 315px;
    height: 100%;
    z-index: 0;
}
.wrapper
{
    padding: 60px 0 0 0;
    position: relative;
    z-index: 1;
    width: 65%;
    margin-left: auto;
    margin-right: auto;
}

/* heading */
.signup-heading h2
{

    font-size: 42px;
    color: rgb(12, 16, 71);
    font-weight: bold;
    text-transform: uppercase;

}
.signup-heading p
{

    font-size: 18px;
    font-family: "Roboto";
    color: rgb(12, 16, 71);

}

/* google button */
.google-signup
{
    width: 100%;
    height: 60px;
    margin-top: 30px;

}
.google-signup button
{

    border: solid 2px rgb(237, 237, 237);
    border-radius: 32px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 3px 70px 0px rgba(0, 0, 0, 0.07);
    width: inherit;
    height: inherit;
    font-weight: bold;
}
.google-signup button img
{
    width: 22px;
    margin-right: 10px;
    transition: 0.5s ease;
}
.google-signup:hover button img
{
    transform: rotate(360deg);
}
.email-signup
{
    margin-top: 20px;
    text-align: center;
    width: 100%;
    position: relative;
}
.email-signup span
{

    font-size: 16px;
    color: rgb(12, 16, 71);
    font-weight: bold;
    z-index: 1;
    position: relative;
    width: max-content;
    background-color: rgb(255, 255, 255);
    padding: 0 20px;

}
.email-signup::after
{
    position: absolute;
    content: "";
    width: 100%;
    left: 0;
    top: 50%;
    height: 1px;
    z-index: 0;
    background-color: rgb(235, 235, 235);
}

/* form */
form
{
    margin-top: 30px;
}

/* form fields */
.form-field
{
    margin-bottom: 25px;
    width: 100%;
}
.form-field label
{

    font-size: 15px;
    color: rgb(12, 16, 71);
    font-weight: bold;
    margin-bottom: 5px;
    margin-left: 30px;

}
.form-field label::after
{
    content: "*";
    font-size: inherit;
}
.form-field input
{

    border: solid 2px rgb(237, 237, 237);
    border-radius: 36px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 3px 70px 0px rgba(0, 0, 0, 0.07);
    height: 70px;
    width: inherit;
    font-size: 15px;
    font-family: "Roboto";
    color: rgb(137, 137, 137);
    transition: 0.5s ease;
    padding-left: 30px;

}
.form-field input:focus
{
    outline: none;
    border: solid 2px rgb(81, 56, 238);
}
.agree-notif
{
    margin-top: 10px;
}
.agree-notif label
{
    display: flex;
    align-items: center;
    margin-left: 30px;
}

/* checkbox style */
.agree-notif input[type=checkbox]
{
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    line-height: 20px;
    border: solid 1px rgb(237, 237, 237);
    background-color: transparent;
    cursor: pointer;
    margin-right: 10px;

}
.agree-notif input[type=checkbox]:checked
{
    background-color: rgb(81, 56, 238);
    text-align: center;
    border-color: rgb(81, 56, 238);
}
.agree-notif input[type=checkbox]:checked::after
{
    font-family: "Font Awesome 5 free";
    font-weight: 900;
    content: "\f00c";
    color: rgb(255, 255, 255);
}
.agree-notif label span
{

    font-size: 15px;
    color: rgb(12, 16, 71);
    font-weight: bold;
}
.agree-notif label span a
{
    color: rgb(81, 56, 238) !important;
}

/* submit button */
.signup-submit
{

    width: 100%;
    height: 60px;
    margin-top: 35px;
}
.signup-submit button
{
    background-color: rgb(81, 56, 238);
    width: inherit;
    height: inherit;
    border-radius: 32px;
    /*border: solid 2px transparent;*/
    border: none;
    position: relative;
    font-size: 16px;
    color: rgb(249, 249, 250);
    font-weight: bold;
    overflow: hidden;

}
.signup-submit button:hover
{
    background-color: rgb(69, 41, 242);
}
.signup-submit button:before
{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    background-image: linear-gradient(90deg, transparent, #fff, transparent);
    transition: 0.5s ease;
}
.signup-submit button:hover:before
{
    left: 100%;
}

.login-notif
{
    font-size: 16px;
    color: rgb(12, 16, 71);
    font-weight: bold;
    margin-top: 20px;
    margin-left: 30px;

}
.login-notif span
{
    color: rgb(81, 56, 238);
    text-decoration: underline;
    cursor: pointer;
}
.copyright
{

    font-size: 15px;
    color: rgb(12, 16, 71);
    font-weight: bold;
    margin-top: 50px;
    margin-left: 30px;

}


/* hide-show signup/login */
.signup
{
    display: block;
}
.login
{
    display: none;
}
.show-login .signup
{
    display: none;
}
.show-login .login
{
    display: block;
}


/* slider */
.slider
{
    position: relative;
    min-height: 100vh;
    background-image: url(../images/slider-bg.png);
    background-size: cover;
}
.slider::after
{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-image: linear-gradient( 360deg, rgb(34,34,55) 6%, rgba(34,34,55,0.77) 27%, rgba(34,34,55,0) 100%);
    z-index: 0;


}
.slider-inner
{
    z-index: 1;
    position: absolute;
    bottom: 120px;
    width: 100%;
}
.slide-wrap
{
    width: 100;
    margin: 0 auto;
}

/* slider caption */
.slider-inner .carousel-caption
{
    text-align: center;
    margin-bottom: 50px;
}
.carousel-caption
{
	position: static;
}
.slider-inner .carousel-caption h1
{

    font-size: 65px;
    width: 50%;
    margin: 0 auto;
    color: rgb(255, 255, 255);
    font-weight: bold;
}
.slider-inner .carousel-caption p
{
    font-size: 20px;
    font-family: "Roboto";
    color: rgb(255, 255, 255);
    width: 40%;
    margin: 0 auto;
    margin-top: 15px;
}

/*slider carousel-indicators*/
.carousel-indicators
{
	margin: 0;
	position: static;
}
.carousel-indicators [data-bs-target]
{
    border-radius: 4px;
    background-color: rgb(140, 124, 244);
    width: 13px;
    height: 12px;
    margin-left: 4px;
    margin-right: 4px;
    transition: 0.5s all ease-in-out;
    border: 0;
}
.carousel-indicators .active
{

    background-color: rgb(255, 255, 255);
    width: 30px;
}
