body {
    margin: 0;
    padding: 0;
    background-image: url('Imagen/Almacen.jpg'); /* Imagen de fondo */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    font-family: Arial, sans-serif;
    color: white;
    text-align: center;
}

.container {
    margin-top: 50px;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 30px;
    border-radius: 10px;
    display: inline-block;
    text-align: center;
}

.icono-envio {
    width: 130px;  /* Aumentamos el tamaño del icono */
    margin-bottom: 15px;
}

.formulario {
    background: white;
    padding: 20px;
    border-radius: 10px;
    color: black;
    display: inline-block;
    text-align: left;
}

label {
    font-weight: bold;
    display: block;
    margin-top: 10px;
}

input, select, button {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

button {
    background-color: darkred;
    color: white;
    font-weight: bold;
    cursor: pointer;
    margin-top: 15px;
}

button:hover {
    background-color: red;
}

#resultado {
    margin-top: 15px;
    font-weight: bold;
    font-size: 18px;
}
