* {
    font-family: Montserrat, sans-serif;
}

#login_page {
    height: 95vh;
    width: 95vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#login_page #ci_logo {
    position: absolute;
    top: 20px;
    left: 20px;
}

#login_wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: auto;
    width: 15vw;
}

#login_wrapper img {
    width: 50%;
    margin-bottom: 2rem;
}

#login_wrapper .form_subscript {
    font-size: .8rem;
    text-align: center;
}

#login_form {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
}

#login_form input {
    padding: .3rem .5rem;
    width: 100%;
    border-radius: .2rem;
    border: 1px solid #333;
}

#login_form #id_login {
    margin-top: 1rem;
    background-color: #ef5d10;
    color: white;
    border: none;
    padding: .5rem;
    border-radius: .2rem;
    font-size: 1.05rem;
}

#id_username {
    margin-bottom: 1rem;
}

#login_separator {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

#login_separator .login_separator_line {
    height: 2px;
    background-color: black;
    width: 50px;
}

#google_login_wrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border-radius: .2rem;
    padding: .5rem 0;
    background-color: #dd4b39;
    color: white;
    width: 100%;
    text-decoration: none;
}
#google_login_wrapper:hover {
    background-color: #aa4b39;
}

#google_login_wrapper i {
    color: white;
}

