* {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    -webkit-tap-highlight-color: transparent;
}


a,
a:hover,
a:focus,
a:active {
    text-decoration: none;
    color: inherit;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    /* box-shadow: 0 0 0 0.2rem rgb(0 123 255 / 25%); */
}



.cont {
    float: left;
    width: 90%;
    height: 90%;
    padding: 5% 5%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.signup {
    width: 90%;
    margin: 20px 5%;
    border: 2px solid #f15c22;
    background-color: #f15c22;
    height: 45px;
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    text-align: center;
    line-height: 45px;
    border-radius: 5px;
}

.logo_container {
    float: left;
    width: 100%;
    transition: all 0.6s linear;
}

.hide {
    display: none;
    transition: all 0.6s linear;
}

.logo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background-color: #ffffff;
    z-index: 1;
    margin: 0% auto;
}

.title {
    float: left;
    width: 100%;
    padding: 10px 0%;
    font-size: 30px;
    color: #ffffff;
    font-weight: 500;
    text-align: center;
}

.title span {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, .7);
}

/*********/
#login_container {
    width: 90%;
    height: 100%;
    background-color: #ffffff;
    padding: 20px 5%;
    position: fixed;
    z-index: 10;
    bottom: -1000px;
    left: 0;
    transition: all 500ms;
}

.textbox_con {
    float: left;
    width: 100%;
}

.textbox {
    float: left;
    width: 100%;
    padding-left: 5%;
    padding-right: 5%;
    height: 45px;
    margin-top: 10px;
    font-size: 15px;
    font-weight: 500;
    border: none;
    outline: none;
    border-radius: 3px;
}

.login_btn {
    float: left;
    width: 100%;
    padding-left: 5%;
    padding-right: 5%;
    height: 45px;
    line-height: 45px;
    border-radius: 3px;
    border: none;
    text-align: left;
    background-color: #0ca74f;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    margin-top: 10px;
}

.login_btn:hover {
    opacity: .7;
}

.login_icon {
    float: right;
    font-size: 20px;
    margin-top: 13px;
}

.error {
    float: left;
    width: 90%;
    background-color: #333333;
    color: #ffffff;
    padding: 10px 5%;
    margin-top: 10px;
    border-radius: 3px;
    font-weight: 500;
    font-size: 12px;
}