@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Poppins:wght@400;500;600;700&display=swap');
*{
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    text-decoration: none;
    box-sizing: border-box;
    font-family: "poppins";
}
body{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f4f4f4;
}

form{
    width: 30%;
    border-radius: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
    height: auto;
    background-color: #fff;
    padding: 30px;
    padding-top: 130px;
    /* border: 1px solid red; */
    position: relative;
    overflow: hidden;
    box-shadow: 0px 0px 4px rgba(0,0,0,0.2);
}

.logo_login{
    z-index: 2;
    height: 150px;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* border: 1px solid red; */
}

.logo img{
    width: 200px;
}
.logo h1{
    font-size: 30px;
    color: #fff;
    /* padding: 10px; */
    /* border-bottom: 1px solid #fff; */
}
.logo p{
    font-size: 10px;
    color: #fff;
    padding: 10px;
    margin-top: 10px;
    /* border-bottom: 1px solid #fff; */
}
.custom-shape-divider-top-1717910984 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-top-1717910984 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 150px;
}

.custom-shape-divider-top-1717910984 .shape-fill {
    fill: royalblue;
}

.login_form_separator{
    margin-top: 20px;
    margin-bottom: 20px;
    height: 1px;
    background-color: #ddd;
    border: none;
}
form label{
    font-size: 12px;
    color: #666;
    color: #ff9900;
    /* margin-top: 20px; */
}
.input_group{
    border-bottom: 1px solid #ddd;
    border: 1px solid #ddd;
    width: 100%;
    height: 40px;
    display: flex;
    padding: 1px;
    align-items: center;
    margin-top: 10px;
    border-radius: 50px;
    padding: 10px;
}

.input_group span{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 10%;
    height: 40px;
    border-right: 1px solid #ddd;
}
.input_group span.show_password{
    border-right: none;
    cursor: pointer;
    border-left: 1px solid #ddd;
}
.input_group span i{
    color: #ff9900;
}
.input_group input{
    width: 90%;
    height: 38px;
    border: none;
    padding: 10px;
}
.input_group input:focus{
    outline: none;
    border: none;

}

.login_features{
    display: flex;
    align-items: center;
    /* border: 1px solid red; */
    height: 60px;
    justify-content: space-between;
}
.stay_logged_in{
    /* border: 1px solid red; */
    display: flex;
    align-items: center;
}
.stay_logged_in input{
    width: 15px;
    height: 15px;
}
.stay_logged_in label{
    margin-left: 10px;
}
.login_features a{
    font-size: 12px;
    color: #ff9900;
}
button{
    width: 100%;
    background-color: #ff9900;
    border: none;
    color: #fff;
    border-radius: 5px;
    height: 50px;
    cursor: pointer;
}

.signuplink{
    font-size: 14px;
    text-align: center;
    margin-top: 20px;
}
.signuplink a{
    color: #ff9900;
}

.or_title{
    display: flex;
    align-items: center;
    margin-top: 20px;
    justify-content: space-between;
    /* border: 1px solid red; */
}
.or_title hr{
    background-color: #ddd;
    width: 45%;
    height: 1px;
    border: none;

}
.or_title p{
    width: 10%;
    display: flex;
    color: #666;
    font-weight: 900;
    justify-content: center;
    align-items: center;
    /* border: 1px solid #666; */
}

.login_with_google{
    width: 100%;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    color: #fff;
    margin-top: 10px;
    border: 1px solid #ddd;
    background-color: royalblue;

}
.login_features i{
    color: #ff9900;
}
.login_with_google p{
    margin-left: 10px;
    color: #fff;
    font-size: 12px;
}
.login_with_google:hover{
    /* background-color:#3b5998; */
    /* background-color:#1DA1F2; */
    background-color: royalblue;
    color: #fff;
}
.login_with_google:hover p{
    color: #fff;
}
.info{
    width: 100%;
    margin-top: 10px;
    text-align: center;
    font-size: 12px;
    color: #666;
}
.reset_paragraph{
    width: 100%;
    margin-top: 20px;
    /* text-align: center; */
    font-size: 14px;
    color: #666;
}
.info a{
    color: #ff9900;
}

@media only screen and (max-width:912px){
    form{
        width: 98%;
        /* padding: 10px; */
    }
}