
body {
    font-family: 'Baloo 2', sans-serif;
    background-image: url('Marca_B2B.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* Ajuste a opacidade conforme necessário */
    z-index: 1;
}

.login {
    position: relative;
    z-index: 2;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
    text-align: center;
}
.login h2 {
    color: #ea5858;
    margin-bottom: 20px;
}
.login label {
    display: block;
    margin: 10px 0 5px;
    font-weight: bold;
    color: #ea5858;
}
.login input[type="text"], .login input[type="password"] {
    width: calc(100% - 20px);
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    text-align: center;
}
.login input[type="submit"] {
    background-color: #ea5858;
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
    border-radius: 4px;
}
.login input[type="submit"]:hover {
    background-color: #C94D4D;
}
.login img {
    max-width: 200px;
}
.notification {
    display: none;
    margin: 10px 0;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
}
.notification.success {
    display: block;
    background-color: #d4edda;
    color: #155724;
}
.notification.error {
    display: block;
    background-color: #f8d7da;
    color: #721c24;
}
