* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f4f4f4;
    font-family: Arial, sans-serif;
}

form {
    background: #333;
    padding: 20px;
    border-radius: 5px;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.texto {
	font-size: 16px;
    color: #fff;
    font-weight: bold;
}

input, button {
    padding: 10px;
    border: none;
    border-radius: 5px;
}

button {
    background: #6200ea;
    color: white;
    cursor: pointer;
    transition: background 0.3s;
}

button:hover {
    background: #3700b3;
}