@import '/static/css/theme.css';

/******************************************************************************/
/*                     B A S E     L A Y O U T     C S S                      */
/******************************************************************************/

header{
    display: none !important;
}

body {
    background-image: url('/static/img/frontend/screen_frontend.jpg');
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover;
    background-attachment: fixed;
}

.main_background {
    background-image: url('/static/img/frontend/screen_frontend.jpg');
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover;
    background-attachment: fixed;
}

body p {
    font-size: 14px;
}


body a {
    color: var(--primary-color);
    font-weight: 400;
}


body a:hover {
    color: rgba( var(--primary-color-rgb), 50%);
}


.frosted {
    background-color: #00000045;
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0px 15px 40px -20px var(--secondary-color);
}

/* body > .main { */
body .main{
    min-width: 400px;
    text-align: center;
    /* font-size: 2.5rem; */
    border-radius: 5px;
    box-shadow: 0px 15px 40px -20px var(--secondary-color);
    padding: 20px !important;
    border-top: 3px solid var(--primary-color);
    margin: 20 0 20 0;
    /* transition: all 0.5s ease-in; */
    transform: translateX(-0%);
    -webkit-transform: translateX(-0%);
}


.main * {
    max-width: 600px;
}


section {
    padding-left: 110px;
}


.logo_campus{
    width: 250px;
    margin-bottom: 40px;
    position: fixed;
    top: 30px;
    left: 40px;
}


.column_center{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

@media only screen and (max-width: 790px) {

    body > .main {
        min-width: 90%;
    }

    section {
        padding-left: 0px;
    }
}


.body_backend{
    background-image: url('/static/img/frontend/screen_backend.jpg');
    display: flex !important;
    justify-content: center;
    align-items: center;
}


.btn:focus, .btn:active:focus, .btn:focus-visible {
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba( var(--primary-color-rgb), 25%);
}


.btn-primary {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}


.btn-primary:hover, .btn-primary:active, .btn-primary:visited {
    filter: brightness(120%);
}


.btn-primary:focus, .btn-primary:active:focus, .btn-primary:focus-visible {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 0.25rem rgba( var(--primary-color-rgb), 25%) !important;
}


.btn-secondary {
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
}


.btn-secondary:hover, .btn-secondary:active, .btn-secondary:visited {
    filter: brightness(120%);
}


.btn-secondary:focus, .btn-secondary:active:focus, .btn-secondary:focus-visible {
    border-color: var(--secondary-color) !important;
    box-shadow: 0 0 0 0.25rem rgba( var(--primary-color-rgb), 25%) !important;
}


body input:focus, body input:focus-visible {
    border-color: rgba(var(--primary-color-rgb), 40%) !important;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(var(--primary-color-rgb), 25%) !important;
}


.form-label {
    color: #555;
    font-weight: 400;
}



/******************************************************************************/

.page_header{
    background-color: var(--primary-color);
    /* box-shadow: 0px 6px 9px -2px rgb(0 0 0 / 39%); */
    box-shadow: 0px 12px 13px -2px rgb(0 0 0 / 73%);
}



.page_header nav .nav-link {
    font-size: 16px;
    font-weight: 400;
    transition: all ease-in-out 0.3s;
    margin: 10 5;
}


.page_header nav .nav-item.nav-link:hover {
    color: var(--secondary-color) !important;
    background-color: rgba(255, 255, 255, 0.45);
    border-radius: 6px;
}


.page_header .active{
    color: var(--secondary-color)  !important;
    background-color: rgba(255, 255, 255, 0.30);
    border-radius: 6px;
}


.footer_top{
    background-color: var(--secondary-color);
}


.footer_top > img{
    max-width: 100px !important;
    height: 150px !important;
}

.footer_img{
    max-width: 98% !important;
    max-height: 150px !important;
}

.footer_top > div > p {
    margin-bottom: 0px;
}


.footer_top i {
   margin-right: 5px;
   margin-left: 5px;
}


.footer_top, .footer_bottom a {
    text-decoration: none;
    color: white;
}


.footer_bottom{
    background-color: #212529;
    box-shadow: 0px 2px 9px 6px rgb(0 0 0 / 29%);
}