:root {
    --primary-color: #666666;
    --blue-color: #67CFE5;
    --green-color: #95BB65;
    --grey-color: #cccccc;
    --white-color: #ffffff;
    --black-color: #000000;
}

*,
 ::after,
 ::before {
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 400;
    line-height: 1.2;
    margin: 0;
    padding: 0;
}

svg {
    max-width: 100%;
    width: 100%;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
    color: var(--green-color);
}

input,
button {
    font-family: inherit;
}

:focus,
input:focus,
button:focus {
    outline: none;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.mb-0 {
    margin-bottom: 0;
    ;
}

.blue__bg {
    background-color: var(--blue-color);
}

.green__bg {
    background-color: var(--green-color);
}

.btn {
    display: block;
    width: 100%;
    border: none;
    padding: 25px 30px;
    font-size: 18px;
    border-radius: 100px;
    font-weight: 700;
    color: #ffffff;
    background-color: var(--grey-color);
    cursor: pointer;
    -webkit-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
}

.btn:hover {
    background-color: var(--green-color);
    -webkit-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
}


/* Splash Screen CSS Start */

.splash--block {
    display: none;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-image: url(../img/curv-shape.svg);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.splash--block.show {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.splash___main .logo img {
    width: 280px;
}


/* Splash Screen CSS End */


/* Login CSS Start */

.user__authentcation {
    /* display: none; */
    display: block !important;
    opacity: 1 !important;
    transition: none !important;
}

.mobile-svg {
    display: none;
}

.user__authentcation.show {
    display: block;
    -webkit-animation: fadeIn 1s;
    animation: fadeIn 1s;
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.user__authentcation.show .header__bg {
    -webkit-animation: fadeIn 1s;
    animation: fadeIn 1s;
}

.user__authentcation.show .logo {
    -webkit-animation: fadeUp 1s;
    animation: fadeUp 1s;
}

@-webkit-keyframes fadeUp {
    from {
        transform: translateY(80px);
    }
    to {
        transform: translateY(0);
    }
}

@keyframes fadeUp {
    from {
        transform: translateY(80px);
    }
    to {
        transform: translateY(0);
    }
}

.header__bg img {
    width: 100%;
}

.form__main {
    margin-top: 70px;
}

.form__main h1 {
    color: var(--black-color);
    margin: 0 0 50px;
    font-weight: 500;
}

.user__authentcation__inner form{
    max-width: 420px;
    /* margin: -200px auto 0; */
}

.user__authentcation .logo img {
    width: 190px;
}

/* .form-group {
    margin-bottom: 30px;
} */

.form-group a {
    font-weight: 500;
}
.po__email--input{
    border-bottom: 1px solid #9A9A9A;
}
.form-group .form-control {
    padding: 20px 10px 20px 0;
    width: 100%;
    max-width: 100%;
    white-space: break-spaces;
    font-size: 18px;
    line-height: 1.2;
    border: none;
    box-shadow: none !important;
    background-color: transparent !important; 
    /* border-bottom: 1px solid #9A9A9A; */
}


/* Login CSS End */

@media (max-width: 1600px) {
    .splash___main .logo img {
        width: 160px;
    }
    .user__authentcation .logo img {
        width: 120px;
    }
    .user__authentcation__inner {
        /* width: 400px; */
        /* margin: -140px auto 0; */
    }
    body,
    .form-group .form-control {
        font-size: 16px;
    }
    .btn {
        padding: 15px 30px;
        font-size: 16px;
    }
    .form__main {
        margin-top: 40px;
    }
    .form__main h1 {
        margin-bottom: 30px;
    }
}

@media (max-width: 1199px) {
    .user__authentcation__inner {
        /* width: 300px; */
        /* margin: -120px auto 0; */
    }
}

@media (max-width: 991px) {
    .splash--block {
        background-image: url(../img/curv-shape-mobile.svg);
    }
    .splash___main .logo img {
        width: 120px;
    }
    .user__authentcation__inner {
        /* margin: -90px auto 20px; */
    }
}

@media (max-width: 767px) {
    .splash--block {
        background-position: center 100px;
    }
    .user__authentcation__inner {
        /* margin: -90px auto; */
    }
}

@media (max-width: 480px) {
    .user__authentcation__inner {
        width: 100%;
        padding: 0 20px;
        /* margin: -70px auto; */
    }
    .mobile-svg {
        display: block;
    }
    .desktop-svg {
        display: none;
    }
}


/* Landscape */

@media only screen and (min-device-width: 411px) and (max-device-width: 823px) and (-webkit-min-device-pixel-ratio: 3) and (orientation: landscape) {
    .splash--block {
        background-position: center top;
    }
    .splash___main .logo {
        margin: 150px 0 0;
    }
    .splash___main .logo img {
        width: 100px;
    }
}

@media only screen and (min-device-width: 375px) and (max-device-width: 812px) and (-webkit-min-device-pixel-ratio: 3) and (orientation: landscape) {
    .splash--block {
        background-position: center top;
    }
    .splash___main .logo {
        margin: 150px 0 0;
    }
    .splash___main .logo img {
        width: 100px;
    }
}


/* Landscape */

@media only screen and (min-device-width: 375px) and (max-device-width: 667px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
    .splash--block {
        background-position: center top;
    }
    .splash___main .logo {
        margin: 150px 0 0;
    }
    .splash___main .logo img {
        width: 100px;
    }
}


/* Iphone 5S Landscape */

@media only screen and (min-device-width: 320px) and (max-device-width: 568px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
    /* .user__authentcation__inner {
        margin: -70px auto;
    } */
    .user__authentcation .logo img {
        width: 90px;
    }
}

.text-danger {
    color: red;
}