body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    text-align: center;
}

.container {
    background: white;
    padding: 20px;
    width: 80%;
    margin: auto;
    box-shadow: 0px 0px 10px #aaa;
    border-radius: 10px;
}

.steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.step {
    padding: 10px;
    background: lightgray;
    font-weight: bold;
    text-align: center;
}

.step.active {
    background: #5C5C8A;
    color: white;
}

.icon {
    width: 60px;
    margin-bottom: 10px;
}

.loading-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #5C5C8A;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.loading-icon {
    width: 50px;
    height: 50px;
    border: 4px solid white;
    border-top: 4px solid transparent;
    border-radius: 10px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Secciones de Avisos y Requisitos */
.aviso-box {
    background-color: #5C5C8A;
    color: white;
    border-radius: 10px;
}

.requisito-box {
    background-color: #d1d1d1;
    color: black;
    border-radius: 10px;
}
