﻿.contenedor {
    width: 520px;
    margin: 40px auto;
    background: #fff;
    padding: 25px;
    border-radius: 10px;
}

label {
    display: block;
    margin-top: 15px;
    font-weight: bold;
}

input, select {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    margin-top: 5px;
}

.btn {
    margin-top: 25px;
    background: #ffc107;
    border: 0;
    font-weight: bold;
    cursor: pointer;
}

.error {
    color: red;
    margin-top: 15px;
    font-weight: bold;
}

.ok {
    color: green;
    margin-top: 15px;
    font-weight: bold;
}

.gps {
    font-size: 12px;
    color: #666;
    margin-top: 4px;
}


.steps {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

.step {
    flex: 1;
    padding: 12px;
    border-radius: 10px;
    background: #e5e7eb;
    text-align: center;
    font-weight: bold;
    color: #6b7280;
}

    .step.active {
        background: #facc15;
        color: #111827;
    }

.btn-main {
    margin-top: 20px;
    width: 100%;
    border: 0;
    border-radius: 12px;
    padding: 14px;
    background: #facc15;
    font-weight: 700;
    cursor: pointer;
}

.btn-secondary {
    margin-top: 12px;
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    padding: 12px;
    background: white;
    cursor: pointer;
}

.resumen {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 20px;
}