body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.container {
    background-color: #f8f8f8;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 600px;
    text-align: center;
}

.header {
    margin-bottom: 30px;
}

.header img {
    width: 150px; /* Ajusta el tamaño del logo */
    margin-bottom: 10px;
}

.header h1 {
    font-size: 24px;
    color: #333;
    margin: 0;
}

.title {
    font-size: 28px;
    color: #d2b48c; /* Color dorado */
    margin-bottom: 20px;
}

.upload-box {
    border: 2px solid #d2b48c;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
}

.upload-box p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.upload-button {
    background-color: #d2b48c;
    color: #fff;
    padding: 14px 30px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
}

.upload-button:hover {
    background-color: #bfa581;
}

.search-text {
    color: #555;
    margin-bottom: 20px;
}

.upload-steps {
    display: flex;
    justify-content: space-around;
    margin-bottom: 30px;
}

.step {
    text-align: center;
}

.step span {
    display: block;
    font-size: 24px;
    font-weight: bold;
    color: #d2b48c;
    margin-bottom: 10px;
}

.step p {
    color: #555;
}

form {
    display: none; /* Oculta el formulario original */
}

.message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 6px;
    text-align: center;
    font-weight: bold;
}

.message.success {
    background-color: #d4edda;
    color: #155724;
}

message.error {
    background-color: #f8d7da;
    color: #721c24;
}
