/*
  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 0.4rem rgb(137, 32, 98, 0.6) !important;
    border: 0.1rem solid rgba(124, 61, 61, 0.3);
    border-radius: 0.4rem;
    padding: 1.5rem 2rem;
}

@media screen and (max-width: 600px) {
    .edu_pro_eng_signin_form_wrapper form {
        width: 90%;
    }
}

.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 .form-floating i {
    position: absolute;
    top: 50%;
    right: 0.5rem;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 1.2rem;
}

.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);
}

@media screen and (max-width: 350px) {
    .edu_pro_eng_signin_form_wrapper .edu_pro_eng_cus_btn {
        font-size: 1rem;
    }
}

@media screen and (max-width: 280px) {
    .edu_pro_eng_signin_form_wrapper .edu_pro_eng_cus_btn {
        font-size: 0.9rem;
    }
}

.btn_office365 {
    clear: both;
    white-space: nowrap;
    font-size: 1.2rem;
    display: inline-block;
    border-radius: 5px;
    box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.35);
    margin: 15px;
    transition: all 0.5s;
    overflow: hidden;
    width: 14.6rem;
    background: rgb(137, 32, 98);
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.btn_office365.btn_content{
    justify-content: center !important;
}
.btn_office365 > img,
.btn_office365 > span {
    float: left;
    transition: all 0.5s;
}

.btn_office365 > img {
    border-radius: 5px 0 0 5px;
    width: 30px;
    height: 31px;
}

.btn_office365 > span {
    padding: 0.3rem 0.7rem;
    white-space: nowrap;
    color: #fff;
}

.edu_pro_eng_signin_form_wrapper_oauth {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 0.4rem;
    box-shadow: 0 0rem 0.2rem rgba(137, 32, 98, 0.6) !important;
    border: 0.1rem solid rgba(255, 255, 255, 0.3);
    padding: 1.5rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 10px rgba(137, 32, 98, 0.4) !important; /* Adjust the blur and color */
}

.edu_pro_eng_signin_form_wrapper_oauth h1 {
    color: #666;
    opacity: 0;
    margin: 12px 0px;
    animation: fadeIn 2s ease-in-out forwards;
    font-weight: 600;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.edu_pro_eng_header_com_logo {
    max-width: 100%;
    max-height: 100%;
}

.edu_pro_eng_signin_form_wrapper_oauth p {
    font-size: 18px;
    color: #666;
}
@media (max-width: 950px) {
    .edu_pro_eng_signin_form_wrapper_oauth {
        width: 60%;
    }
}

@media (max-width: 522px) {
    .edu_pro_eng_signin_form_wrapper_oauth {
        width: 80%;
    }
}
@media (max-width: 430px) {
    .edu_pro_eng_signin_form_wrapper_oauth {
        width: 100%;
    }
}
