/*
  This file holds the custom css for the sign-in.php file.
*/
.edu_pro_eng_signin_form_wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90%;
    height: 100%;
    margin: auto;
}

.edu_pro_eng_signin_form_wrapper form {
    width: 70%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 0.1rem;
    box-shadow: 0 0rem .4rem rgb(137, 32, 98, 0.6) !important;
    border: 0.1rem solid rgba(255, 255, 255, 0.3);
    border-radius: 0.4rem;
    padding: 1.5rem 2rem;
}

.edu_pro_eng_signin_form_wrapper form input {
    border: 0.1rem solid var(--primary_color) !important;
}

.edu_pro_eng_signin_form_wrapper form input:focus {
    box-shadow: none !important;
    box-shadow: 0 0rem 0.4rem rgb(137, 32, 98, 0.6) !important;
}

.edu_pro_eng_signin_form_wrapper form button {
    background: transparent;
}

.edu_pro_eng_signin_form_wrapper form button:hover {
    box-shadow: 0 0rem 0.4rem rgb(137, 32, 98, 0.6) !important;
}

.edu_pro_eng_text_div {
    overflow: hidden;
    text-align: center;
    color: var(--primary_color);
    font-size: 1rem;
    font-weight: bold;
    margin: 2rem auto;
    display: block;
}

.edu_pro_eng_text_div:before,
.edu_pro_eng_text_div:after {
    background-color: var(--primary_color);
    content: "";
    display: inline-block;
    height: 1px;
    position: relative;
    vertical-align: middle;
    width: 50%;
}

.edu_pro_eng_text_div:before {
    right: 0.5em;
    margin-left: -50%;
}

.edu_pro_eng_text_div:after {
    left: 0.5em;
    margin-right: -50%;
}


.edu_pro_eng_signin_form_wrapper .edu_pro_eng_cus_btn {
    text-decoration: none;
    color: var(--primary_color);
}