@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;500&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background-color: #f5f5f5 !important;
}

.left {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background-color: #1a5266;
    height: 100%;
    color: #fff;
    overflow-y: auto;
}
.right {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f5f5f5;
}
.vertical-h{
    height: 100vh;
}

/* elements */

.position-relative{
    overflow: hidden;
}
.star {
    position: absolute;
    right: 0;
    z-index: 5;
}
.lasi {
    position: absolute;
    top: 20%;
    right: -130px;
    z-index: 50;
}
.l8ga {
    position: absolute;
    bottom: 0;
    left: 0;
    margin: 0;
    z-index: 0;
}
.oxuq {
    position: absolute;
    bottom: 0;
    right: 0;
    margin: 0;
    z-index: 50;
}

/* end of the elements */

.title {
    color: rgba(255, 255, 255, 1);
    width: 448px;
    height: auto;
    font-size: 2.8rem;
    text-align: center;
    font-family: "Source Sans 3";
    font-weight: 700;
    line-height: normal;
    text-decoration: none;
    text-transform: uppercase;
    margin-top: 4rem;
}
input[type="email"],
[type="password"] {
    color: #fff;
}
.form-group {
    width: 40vw;
    margin-top: 2rem;
}
.form-label {
    height: 34px;
    font-family: "Poppins";
    font-style: normal;
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1.313rem;
    letter-spacing: 0.03em;
    color: #ffffff;
}
.form-control,
.form-select {
    box-sizing: border-box;
    width: 100%;
    color: #ffffff !important;
    height: 3.984rem;
    font-family: "Poppins";
    font-weight: 300 !important;
    border: 1px solid rgba(255, 255, 255, 0.66);
    filter: drop-shadow(0px 4px 10px rgba(0, 0, 0, 0.25));
    border-radius: 0.75rem;
    background-color: #1a5266 !important;
}
.form-control::placeholder {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 300;
    font-size: 0.875rem;
    line-height: 1.313rem;
    letter-spacing: 0.03em;
    color: #ffffff !important;
}
.form-control:focus {
    font-weight: 500;
    color: #1a5266;
    box-shadow: 0 0 0 2px #dee349 !important;
}

.sign-in-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    font-family: "Poppins";
    font-weight: 500;
    font-size: 0.75rem;
    line-height: 1.125rem;
    letter-spacing: 0.03em;
    color: #ffffff;
}
.remember {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 7.5rem;
}

.sign-in-options a {
    color: #fff;
    text-decoration: none;
}
.sign-in-options a:hover {
    color: #e76324;
}

.sign-up {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 500;
    font-size: 0.625rem;
    line-height: 0.938rem;
    text-align: center;
    letter-spacing: 0.03em;
    margin-top: 2rem;
    color: #ffffff;
    margin-bottom: 3rem;
}

.sign-up span a {
    color: #ec8206;
    cursor: pointer;
    text-decoration: none;
}
.sign-up span:hover {
    color: #e76324;
}

.sign-in-btn {
    font-family: "Poppins";
    font-style: normal;
    color: #fff;
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 1.875rem;
    border: none;
    letter-spacing: 0.03em;
    background: linear-gradient(180deg, #ec8206 0%, #ffbb6b 100%);
    box-shadow: 0px 4px 10px rgba(233, 68, 75, 0.25);
    border-radius: 0.75rem;
    width: 100%;
    height: 3.984rem;
    position: relative;
    z-index: 1;
}

/* register */
.subtitle p {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
    text-align: center;
    letter-spacing: 0.03em;
    color: #ffffff;
}

@media only screen and (max-width: 460px) {
    .title {
        font-size: 2rem;
        width: 17.5rem;
    }
    .form-group {
        width: 100vw;
    }
    .vertical-h{
        height: 100%;
    }
}

@media only screen and (max-width: 768px) {
    .form-group {
        width: 70vw;
    }
    .title {
        padding: 1rem;
    }

    .l8ga,
    .star,
    .lasi,
    .oxuq {
        display: none;
    }
    .vertical-h{
        height: 100%;
    }
}

@media only screen and (min-width: 769px) and (max-width: 991px) {
    .form-group {
        width: 70vw;
    }

    .l8ga,
    .star,
    .lasi,
    .oxuq {
        display: none;
    }
    .vertical-h{
        height: 100%;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px){
    .lasi {
        right: -165px;

    }
}

@media only screen and (min-width: 1200px) and (max-width: 1550px){
    .lasi {
        right: -190px;

    }
}


@media only screen and (min-width: 1440px) {
    .form-group {
        width: 30vw;
    }
}


