html {
    background: rgb(240,240,240);
    font-family: 'Roboto', sans-serif;font-weight:400;
}



.body_content {
    display: flex;
    align-items:center;
    justify-content: center;
    min-height: 100vh;
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}


.main_container {
    width: 45%;
    min-height: 60vh;
    display: flex;
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.log-container{
     width: 55%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 40px;
    border-radius: 0px 4px 4px 0px;
    background: rgb(254, 254, 254, 1.0);
}

label{
    margin-left: -11px;
}

input, label, h3{
    font-family: 'Roboto', sans-serif;font-weight:400;  
}

.left{
    width: 45%;
    min-height: 100%;
     border-radius: 4px 0px 0px 4px;
    background: #28c76f;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}

#logo_id{
    width: 85%;
}


.left #top-logo {
   width: 80%;
}

.left p{
    font-size: 14px;
    color: white;
    margin-top: -20px;
    padding: 0px 10px;
    font-family: 'Roboto', sans-serif;font-weight:400;
}

.login-form{
  width: 100%;
}

form {
  width: 100%;
    display: flex;
    flex-direction: column;
    animation: slideIn 0.5s ease-in-out;
}

@keyframes slideIn {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.log-container #top-logo{
    width: 270px;
    height: 100px;
    display: none;
}

.log-container .row {
    display: flex;
    margin-bottom: 5px;
    flex-direction: column;
    gap: 5px;
}

.log-container .row .input-div{

    width: 100%;
    border-radius: 4px;
      min-height: 42px;
    border: 1.5px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0px 10px;
    transition: .2s linear;

}

.log-container .row .input-div:focus-within { 
    border-color: #28c76f;
}

.log-container .row .input-div #show{
    cursor: pointer;
}



.log-container .row .input-div #left{
    font-size: 18px;
    color: #28c76f;
}



.log-container .row .input-div label {
    font-size: 15px;
}

.log-container .row .input-div input {
    width: 100%;
    color: grey;
    outline: none;
    padding: 10px;
    border: none;
}

.form-btns {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
}

h3{

    padding: 20px 0px;
    font-size: 22px;

}

.form-check{
    margin-bottom: 10px;
}



.form-btns button{
    min-height: 42px;
   width: 108.5%;
   
}


 a {
    text-decoration: none;
    margin: 10px 0px;
    text-align: center;
    font-size: 15px;
    color: #28c76f;
}

.options a:hover {
    color: grey;
    text-decoration: underline; 
}

p {
    text-align: center;
    font-size: 10px;
    font-family: Arial, Helvetica;
}

.msg-cont{
    background: rgb(255, 0, 0, 0.15);
    border-radius: 15px;
    display: flex;
    align-items: center;
    padding: 3px 15px 3px 3px;
    color: red;
    gap: 10px;
     font-family: 'Roboto', sans-serif;font-weight:400;  
}

.msg-cont #message_login{
     font-family: 'Roboto', sans-serif;font-weight:400;  
 font-size: 14px;   
}

.msg-cont i{
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: white;
    background: red;

}

.msg-cont.active{
    background: rgb(0, 194, 146, 0.15);
    color: var(--primary);
}
.msg-cont i.active{
   background: var(--primary);  
}

.loader {
  width: 100%;
  height: 4px;
  background-color: #f3f3f3; /* Background color */
  position: relative;
  overflow: hidden;
  display: none;
}

.loader::before {
  content: "";
  display: block;
  width: 0;
  height: 100%;
  background-color: #28c76f; /* Loader color */
  animation: loading 2s infinite ease-in-out;
}

@keyframes loading {
  0% {
    width: 0;
    left: 0;
  }

  25% {
    width: 100%;
    left: 0;
  }

  50% {
    width: 0;
    left: 100%;
  }
   75% {
    width: 100%;
    left: 30%;
  }
  100% {
    width: 0;
    left: 100%;
  }
}


.log-tabs{
    width: 108%;
    display: flex;
    margin-bottom: 10px;
 }

 .log-tabs button{
    width: 50%;
    min-height: 40px;
    background: transparent;
    outline: none;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 7px;
    justify-content: center;
 }

 .log-tabs button.active{
    background: var(--primary);
    color: white;
 }

#subtext{
    size: 9px;
    text-align: center;
    padding: 5px 0px;
    color: rgb(0, 0, 0, 0.6);

}

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

.form_comp{
    width: 50%;
    background: rgb(254,254, 254, 1.0);
    padding: 10px;
    border-radius: 4px;
    box-shadow: 0px 0px 4px rgb(0, 0, 0, 0.07);
}

.no-session-cont{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.no-session-cont h4{
 color: var(--primary);
 font-size: 45px;
 text-shadow: 0px 0px 4px #ccc;
 font-family: 'Roboto', sans-serif;font-weight:400;
 font-weight: bolder;

}

.no-session-cont strong{
    font-size: 20px;
    font-weight: bold;
}

.no-session-cont .aaa{
    font-size: 18px;
     font-family: 'Roboto', sans-serif;font-weight:400;
}

.no-session-cont a{
    width: 100%;
    min-height: 35px;
    padding: 10px;
    border-radius: 4px;
}



@media (max-width: 870px) {
  

    .main_container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    border-radius: none;
    box-shadow: none;
}


.main_container .left{
    display: none;
}

  .log-container{
    justify-content: start;
    background: none;
    padding: 0;
    width: 100%;
    min-height: 100vh;
    border-radius: none;
    box-shadow: none;
     background: white;
  }

  .log-container{
     width: 100% !important;
    height: 100vh;
    padding: 30px;
    box-shadow: none; 
}

.log-container #top-logo{
    display: block;
}

 }

 



