* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Arial', sans-serif;
    background-image: url('../../img/7.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;  
    justify-content: center;
    align-items: center;
    position: relative; /* Essa propriedade é necessária para que ::before funcione corretamente */
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 105, 26, 0.3); /* Cor verde com opacidade */
    z-index: -1; /* Coloca a camada de cor por baixo do conteúdo do body */
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-box {
    background: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 300px;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px, rgba(17, 17, 26, 0.1) 0px 24px 80px;
    border-top: .5rem solid  #157a49;
}

.login-box h2 {
    text-align: center;
    margin-bottom: 20px;
}

.textbox {
    margin-bottom: 15px;
}

.textbox input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.btn.btn-success {
    width: 100%;
    background-color: #157a49 !important;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.btn:hover {
    background:  #157a49 !important;
}
.text-infos {
    color: #9b9a9a!important;
}

@media (max-width: 400px) {
    .login-box {
        width: 90%;
        padding: 15px;
    }
}