body {
    margin: 0;
    padding: 0;
    background-image: url("/images/web/login-background.jpg");
    background-size: cover;
    background-position: center;
    font-family: Arial, sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

body::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    z-index: 0;
}

.container {
   padding: 3em;
   position: relative;
   z-index: 1;
}

.content-section { /*resized and positioned login container*/
    background: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 3px;
    margin-bottom: 20px;
    margin-top: 15px;
    max-width: 400px;
    margin: 0 auto;
    padding: 2em;
    color: black;
    position: relative;
    z-index: 2;
}

legend { /*logo image position*/
    text-align: center;
}


legend img { /*logo image style inside the container*/
    width: 100px;
    height: auto;
    margin-top: 1px;
    margin-bottom: 10px;
}

.text-muted a { /*forgot password*/
    float: right;
    font-size: 16px;
}


.form-group-btn { /* button position in the container*/
    display: block;
    margin: 0 auto;
    width: 200px;
    transition: background-color 0.3s ease;
    font-weight: bold;
    background-color: #7af3a8;
    border-radius: 10px;
}


.container .btn-outline-info { /*button width*/
    width: 200px;
    color: black;
     border-color: transparent;
}

.container .btn-outline-info:hover {
    background-color: #1E7668;
    border-radius: 10px;
}
