
/* Contenedor principal para el formulario de carga */
.upload-form .container {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
    width: 100%;
    max-width: 500px;
    text-align: center;
    margin-top: 165px;
}

/* Título */
.upload-form h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
    font-weight: 600;
}

/* Estilo para los inputs y el botón */
.upload-form input[type="text"], .upload-form input[type="file"] {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
}

/* Botón */
.upload-form button {
    background-color: #ff933c;
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

/* Efecto al pasar el mouse sobre el botón */
.upload-form button:hover {
    background-color: #0056b3;
}

/* Estilo para los inputs en foco */
.upload-form input[type="text"]:focus, .upload-form input[type="file"]:focus {
    outline: none;
    border-color: #007bff;
}

/* Estilo del formulario en dispositivos móviles */
@media (max-width: 600px) {
    .upload-form .container {
        padding: 20px;
        width: 90%;
    }

    .upload-form h2 {
        font-size: 20px;
    }

    .upload-form button {
        font-size: 16px;
    }
}
