body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    position: relative;
    background: url('moto\ vermelha.jpg') no-repeat center center;
    background-size: cover;
}
body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); 
    z-index: 1;
}

.cadastro {
    position: relative;
    z-index: 2;
    
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.confirmacao{
    position: relative;
    z-index: 2;
    
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

img {
    position: absolute;
    left: -50px; 
    top: 50px;  
    z-index: 2;
}

h1{
    color: white;
    font-size: 65px;
}
p{
    color: white;
    font-size: 35px;
}


