body {
    background: url('https://www.transparenttextures.com/patterns/asfalt-dark.png'), linear-gradient(135deg, #f8f9fa 25%, #e9ecef 100%);
    font-family: Arial, sans-serif;
    color: #343a40;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    height: 100vh;
    margin: 0;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 800px; /* Aumentamos el ancho del formulario */
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    margin: 20px auto;
}

h3 {
    color: #007bff;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    font-weight: bold;
    margin-bottom: 5px;
    color: #495057;
}

.form-control {
    font-size: 0.875rem;
    padding: 8px 10px;
    box-shadow: none !important;
    border-color: #ced4da !important;
}

.btn-primary, .btn-secondary, .btn-success {
    font-size: 1rem;
    padding: 12px 20px;
    width: 100%;
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

.btn-success {
    background-color: #28a745;
    border-color: #28a745;
}

.btn-success:hover {
    background-color: #218838;
    border-color: #1e7e34;
}

.step-indicator {
    margin-bottom: 20px;
    text-align: center;
}

.step-indicator .step-item {
    display: inline-block;
    width: 18%; /* Ajusta el tamaño del indicador de pasos */
    text-align: center;
    padding: 10px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    background-color: #f8f9fa;
    color: #6c757d;
    cursor: pointer;
}

.step-indicator .step-item.active {
    background-color: #007bff;
    color: white;
}

.step-indicator .step-item.completed {
    background-color: #28a745;
    color: white;
}

.step {
    display: none;
}

.step.active {
    display: block;
}
