.success-message, .error-message {
    padding: 8px 12px;
    border-radius: 4px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 10px;
    line-height: 1.2;
    font-size: 14px;
    margin-left: 10px;
}

.success-message {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.error-message {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.zoho-error-message {
    border: 1px solid red;
    padding: 10px;
    background-color: #ffe6e6;
    color: #cc0000;
    margin: 10px 0;
}

.zoho-thumb-img {
    width: 150px;
    height: auto;
    margin-bottom: 10px;
    border: 2px solid #888;
    border-radius: 12px;           /* Bordes redondeados */
    box-shadow: 0 4px 16px rgba(0,0,0,0.15); /* Sombra suave */
    display: block;
    transition: box-shadow 0.2s, transform 0.2s;
}
.zoho-thumb-img:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.25); /* Sombra más intensa al pasar el ratón */
    transform: scale(1.03);
}

.zoho-thumb-placeholder {
    width: 150px;
    height: 150px;
    border: 1px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: #666;
    background: #fafafa;
}

.codigo-verificacion-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 40px 0;
}
.codigo-inputs {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}
.codigo-inputs input[type="text"] {
    width: 52px;
    height: 56px;
    font-size: 2.2em;
    text-align: center;
    border: 1.5px solid #ccc;
    border-radius: 8px;
    outline: none;
    transition: border 0.2s;
    background: #fff;
}
.codigo-inputs input[type="text"]:focus {
    border: 2px solid #3498db;
    background: #eaf6ff;
}

.pasos-indicador {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
    gap: 0;
    position: relative;
}

.paso-bola {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.95em;
    color: #888;
    position: relative;
    flex: 1 1 0;
    z-index: 1;
}

.paso-bola .bola {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #e0e0e0;
    color: #102136;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 6px;
    border: 2px solid #e0e0e0;
    transition: background 0.2s, border 0.2s;
    font-size: 1.1em;
    z-index: 2;
}

.paso-bola.active .bola {
    background: #102136;      /* Azul oscuro para activo */
    color: #fff;
    border: 2px solid #102136;
    box-shadow: 0 0 0 4px #10213622;
}

.paso-bola.completado .bola {
    background: #27ae60;
    color: #fff !important;
    border: 2px solid #27ae60;
}

.paso-bola.completado {
    color: #27ae60;
}

.paso-bola.active {
    color: #102136;
    font-weight: bold;
}

.pasos-indicador .linea-paso {
    position: absolute;
    top: 16px;
    left: calc(16px + 1px);   /* 16px = mitad de la bola (32px/2), 1px = mitad del borde */
    right: calc(16px + 1px);
    height: 4px;
    background: #e0e0e0;
    z-index: 0;
    border-radius: 2px;
}

.pasos-indicador .linea-paso-activa {
    position: absolute;
    top: 16px;
    left: 0;
    height: 4px;
    background: #102136;
    z-index: 0;
    transition: width 0.2s;
}