#login_div:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -11;
  background-image: url("../assets/background.jpg");
  background-blend-mode: lighten;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;  
 opacity: 0.3;
}

#login_div {
    display: flex; 
    position: fixed;       
    z-index: 1; 
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgb(0,0,0); 
    background-color: rgba(0,0,0,0.3); 
    top: 50vh;
    left: 50%;
    transform: translate(-50%, -50%);
  }

            .login-container {
                display: flex;
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background-color: rgba(0, 0, 0, 0.5);
                justify-content: center;
                align-items: center;
                z-index: 1000;
            }
            .login-box {
                background-color: #4b6b8a;
                padding: 20px;
                border-radius: 8px;
                width: 300px;
                position: relative;
                z-index: 1001;
                pointer-events: auto !important;
            }
            .login-box h2 {
                margin-top: 0;
                text-align: center;
            }
            .form-group {
                margin-bottom: 15px;
                
            }
            .form-group label {
                display: block;
                margin-bottom: 5px;
            }
            .form-group input {
                width: 100%;
                padding: 8px;
                border: 1px solid #ddd;
                border-radius: 4px;
                box-sizing: border-box;
                position: relative;
                pointer-events: auto !important;
                opacity: 1 !important;
                background-color: white !important;
            }
            .login-buttons {
                display: flex;
                justify-content: space-between;
                gap: 10px;
            }
    
            .file-list {
                border: 1px solid #ddd;
                border-radius: 4px;
                padding: 10px;
                margin-top: 20px;
            }
            .divider {
                display: flex;
                align-items: center;
                text-align: center;
                margin: 15px 0;
                color: White;
            }
            .divider::before,
            .divider::after {
                content: '';
                flex: 1;
                border-bottom: 1px solid #ddd;
            }
            .divider span {
                padding: 0 10px;
            }
            .hero_header {
                margin-top: 10px;
                text-align: center;
                font-weight: 700;
                font-size: 12pt;
            }

            .hero_para {
                text-align: left;
                font-size: 10pt;
                padding: 5px;
                text-align: center;
            }  
            
            
.login-box .form-group input {
    width: 295px;
    padding: 12px;
    border: 1px solid #e3e7ed;
    border-radius: 6px;
    font-size: 15px;
    box-sizing: border-box;
    font-family: inherit;
    background-color: #486586;
    transition: border 0.2s;
    color: Black;
}

.login-buttons button {
    background-color: #95bee7;
    color: #25214E;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    min-width: 125px;
    margin-right: 5px;
}

            
#message_data {
  position: absolute; 
  display: none; 
  flex-direction: row;
  justify-content: center;
  align-content: center;
  align-items: center; 
  padding: 6px;
  width: 45%;
  height: auto;
  top: 50%;
  left: 50%;
  background-color: rgba(230, 219, 219, 0.9); 
  transform: translate(-50%, -50%); 
  z-index: 200; 
  color: black;
  font-size: 11pt;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  box-shadow: 5px 2px 3px gray;
  border: 1px solid gray;
  overflow: auto;
}   

.modal_close {
    color: #aaa;
    position: absolute;
    left: 98%;
    cursor: pointer;
    z-index: 2;
  }