        .img-container {
            display: flex;
            justify-content: center;
            align-items: center;
        }
body {
            font-family: Arial, sans-serif;
    padding: 0;
    margin: 0;
        }
.parrafo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #fff;
}	
		form {
            max-width: 600px;
            margin: 0 auto;
        }
        label {
            display: block;
            margin-bottom: 10px;
            color: #fff;
        }
        input[type="text"],
        input[type="email"],
		input[type="phone"],
		input[type="file"],
        textarea,
        select {
            width: 100%;
            padding: 10px;
            margin-bottom: 20px;
            border: 1px solid #ccc;
            border-radius: 5px;
            box-sizing: border-box;
        }
        input[type="submit"] {
            width: 100%;
            padding: 10px;
            border: none;
            border-radius: 5px;
            background-color: #007bff;
            color: #fff;
            cursor: pointer;
        }
        input[type="submit"]:hover {
            background-color: #0056b3;
        }