* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Arial', sans-serif;
    
    background-image: url('../../style/1.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;  
    justify-content: center;
    align-items: center;
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(13, 110, 253, 0.5); /* 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 {
    padding: 20px;
    border-radius: 10px;
    width: 500px;
    height: 4rem;
     
}

.login-box h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #fff;
}

.textbox {
    margin-bottom: 15px;
}

.textbox input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.btn.btn-success {
    width: 100%;
    background-color: rgb(13 110 253) !important;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.btn:hover {
    background:  rgb(13 110 253) !important;
}
.text-infos {
    color: #fff!important;
    font-weight: bold;
}

.text-acesso {
    border-bottom: 6px solid rgb(13 110 253);
}

@media (max-width: 400px) {
    .login-box {
        width: 90%;
        padding: 15px;
    }
}