@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@200;300;400;600;700;800;900&family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
*{
    padding: 0;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}
input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #919191;
    font-size: 10px;
    font-weight: lighter;
    transform:translate3d(0,-4px,0)
}
.oms-logo{
    width: 60%; margin-left: 22%;  margin-bottom: 2%;
}
#newLogin {
    height: 100vh;
    display: flex;
    align-items: center;
}

.right-logo img {
    width: 30px;
}
.font-14 {
    font-size: 14px;
}

.login_bg_purple {
    background-image: url(/static/images/Login-2.png);
    background-repeat: no-repeat;
    background-size: cover;
    height: 592px;
    border-radius: 20px;
}

.posisioned-image {
    position: absolute;
    left: -31px;
    width: 90px;
    top: -68px;
}

.pitchy_text {
    color: #ffffff;
    font-weight: 600;
    font-size: 32px;
    line-height: 48px;
}

.genesis_heading {
    color: #02a451;
    font-weight: 600;
    font-size: 28px;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.login_btn button {
    border: 1px solid #02a451;
    box-sizing: border-box;
    box-shadow: 0px 5px 10px 1px rgba(0, 0, 0, 0.05);
    border-radius: 30px;
    margin-bottom: 16px;
    padding: 1px 24px 4px 24px;
}

.login_btn span {
    font-weight: 300;
    font-size: 12px;
    color: #575757;
    line-height: 3;
}

.login_btn img {
    margin-right: 6px;
    width: 20px;
}

.signup_text .borders {
    display: inline-block;
    border-bottom: 1px solid #C4C4C4;
    width: 126px;
}

.signup_text span {
    color: #919191;
    font-weight: 300;
    font-size: 15px;
}

.loginForm label {
    color: #575757;
    font-size: 16px;
}

.loginForm .email_field input {
    border: 1px solid #02a451;
    border-radius: 10px;
}

.loginForm .email_field input::placeholder {
    color: #C4C4C4;
    font-size: 12px;
    font-weight: 300;
}

.loginForm .email_field .custom-btn {
    background-color: #02a451;  
    border-radius: 20px;
    margin-top: 20px;
    padding: 8px 30px 8px 30px;
    line-height: 18px;
}

.email_field .custom-btn span {
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
}

.loginForm .terms_condition span {
    color: #C0C0C0;
    line-height: 24px;
    font-size: 13px;
    font-weight: 500;
}

.loginForm .terms_condition p strong {
    color: #02a451;
    font-weight: 500;
    font-size: 14px;
}
.Success-msg p:nth-child(1) {
    color: #28a745;
    text-align: center;
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 0px;
}

.Success-msg p:nth-child(2) {
    color: #B8B8B8;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 0px;
}

/* .gradient-bg {
    transform: rotate( -12.22deg);
    position: absolute;
    right: -96px;
    background: linear-gradient( 161.97deg, rgba(64, 169, 244, 0.2) 12.28%, rgba(0, 170, 165, 0.2) 86.93%);
    top: -93px;
    width: 150px;
    height: 150px;
    filter: blur(200px);
    opacity: 0.6
} */

@media only screen and (max-width: 480px) and (min-width: 350px){
    .login_bg_purple {
        height: 300px;
        border-radius: 0px;
        margin-bottom: 20px;
    }
    .signup_text{
        display: flex;
        align-items: center;
        justify-content: space-evenly;
    }
    .signup_text .borders {
        width: 60px;
    }
    .email_field .custom-btn span {
        line-height: 1;
        font-size: 13px;
    }
    #newLogin {
        align-items: baseline;
    }
}
