@font-face { 
    font-family:"JLAFont"; 
    src: url(../font/Roboto-Regular.ttf);
}
@font-face { 
    font-family:"JLAFontWelcome"; 
    src: url(../font/Authenia.otf);
}
* {
  font-family: "JLAFont";
}

.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#35697d;
	color:#FFF;
	border-radius:50px;
	text-align:center;
	box-shadow: 2px 2px 3px #999;
    font-size: 34px;
    display: flex;              /* Enable flexbox */
    justify-content: center;    /* Center horizontally */
    align-items: center;        /* Center vertically */
}


body {
    background-image: url(../img/login/adminloginbg.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}
._jla_grid {
    display: flex;
    flex-flow: row;
    flex-wrap: wrap;
}
._jla_grid_cell {
    flex: 1;
    text-align: center;
}
.Grid--cols-2 > ._jla_grid_cell {
    flex: 0 0 100%;
}
@media (min-width: 48em) {
    .Grid--cols-2 > ._jla_grid_cell {
        flex: 1;
    }
    .Grid--1of2 > ._jla_grid_cell {
        flex: 0 0 50%;
    }
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit; /* Inherits the background image */
    filter: blur(200px); /* Adjust this for a stronger or weaker blur */
    opacity: 0.3; /* 40% blur effect */
    z-index: -1;
}

._jla_card {
    display: inline-block;
    flex-direction: column;
    gap: 10px;
    background-color: rgba(255, 255, 255, 0.8); /* 50% transparency */
    
    width: 400px;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 30px;
    padding-top: 10px !important;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.button-submit {
    margin-top: 10px;
    width: 100%;
    height: 50px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    gap: 10px;
    border: 1px solid #ededef;
    background-color: #35697d;
    cursor: pointer;
    color: white;
    transition: 0.2s ease-in-out;
    text-decoration: none;
}

.button-submit:hover {
    border: 1px solid #2d79f3;
}

.inputForm {
    border: 1.5px solid #366073;
    margin-top: 10px;
    border-radius: 10px;
    height: 50px;
    display: flex;
    align-items: center;
    padding-left: 10px;
    transition: 0.2s ease-in-out;
}

.new_login {
    margin-top: -5px;
    color: #35697d !important;
    font-size: 18px !important;
}

.new_login-span {

    font-family: 'JLAFontWelcome' !important;
    font-size: 42px !important;
    color: #35697d !important;
}

.input {
    margin-left: 10px;
    border-radius: 10px;
    border: none;
    width: 100%;
    background: none;
}

._jla_login_header
{
    color: #35697d !important;
}

.input:focus {
    outline: none;
}

.inputForm:focus-within {
    border: 1.5px solid #2d79f3;
}
@media (min-width: 992px){
    ._jla_display_mobile {
        display: block !important;
    }
}

._jla_display_mobile {
        display: none ;
}

@media (min-width: 320px) and (max-width: 480px) {
    ._jla_display_mobile {
        display: none !important;
    }

    ._jla_card {
        width: auto !important;
        display: flex;
    }
    ._jla_container {
        margin-top: 120px;
    }

    .logo {
        width: 100%;
    }
}

._jla_container {
    margin-top: 40px !important;
    width: 100%;
    aspect-ratio: 100 / 29;
}    
.jla_login_logo {
    text-align: center;
}

.grid-1 {
    text-align: end;
}
._jla_form_ {
    text-align: center;
}

.modal {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    text-align: left;
    background: rgba(0,0,0, .5);
    transition: opacity .25s ease;
}

.modal__bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    cursor: pointer;
}

.modal-state {
    display: none;
}

.modal-state:checked + .modal {
    opacity: 1;
    visibility: visible;
}

.modal-state:checked + .modal .modal__inner {
    top: 0;
}

.modal__inner {
    transition: top .25s ease;
    position: absolute;
    top: -20%;
    right: 0;
    bottom: 0;
    left: 0;
    width: 65%;
    margin: auto;
    overflow: auto;
    background: #fff;
    border-radius: 5px;
    padding: 1em 2em;
    height: fit-content;
}

.modal__close {
    position: absolute;
    right: 1em;
    top: 1em;
    width: 1.1em;
    height: 1.1em;
    cursor: pointer;
}

.modal__close:after,
    .modal__close:before {
    content: '';
    position: absolute;
    width: 2px;
    height: 1.5em;
    background: #ccc;
    display: block;
    transform: rotate(45deg);
    left: 50%;
    margin: -3px 0 0 -1px;
    top: 0;
}

.modal__close:hover:after,
.modal__close:hover:before {
    background: #aaa;
}

.modal__close:before {
    transform: rotate(-45deg);
}

@media screen and (max-width: 768px) {
    .modal__inner {
        width: 90%;
        height: 90%;
        box-sizing: border-box;
    }
}