body {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}

.login-background {
    background-image: url(html/assets/images/background.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-form {
    background-color: rgba(109, 109, 109, 0.8);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.login-form h1 {
    margin: 0 0 30px 0;
    text-align: center;
}

.login-form label {
    display: block;
    margin-bottom: 10px;
}


.login-form input[type="text"],
.login-form input[type="password"] {
    padding: 10px;
    border-radius: 5px;
    border: 1px;
    background-color: #e6e4e4;
    width: 93%;
    margin-bottom: 15px;
}

.login-form input[type="submit"] {
    padding: 10px;
    border-radius: 5px;
    border: none;
    width: 100%;
    border: 1px;
    background-color: #b30909;
    color: #fff;
    cursor: pointer;
    margin-bottom: 20px;
}

.background-image {
    background-image: url("background.jpg");
    background-size: contain;
    background-repeat: no-repeat;
    height: 100vh;
}

@media screen and (max-width: 480px) {
    .background-image {
        background-repeat: no-repeat;
        background-size: auto 100%;
    }
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100%;
    text-align: center;
}

.container h1 {
    color: #ffffff;
    margin-bottom: 1em;

}

.container form {
    display: flex;
    flex-direction: column;
    align-items: center;
}


.text-justify {
    text-align: justify !important;
}

.text-wrap {
    white-space: normal !important;
}

.text-nowrap {
    white-space: nowrap !important;
}

.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

.text-center {
    text-align: center !important;
}


.text-light {
    color: #f5f8fb !important;
}

a.text-light:hover,
a.text-light:focus {
    color: #bed2e5 !important;
}

.text-dark {
    color: #151b26 !important;
}

a.text-dark:hover,
a.text-dark:focus {
    color: black !important;
}