/* ETCA Social Login — login.css */

#etca-social-login {
    margin: 0 auto 20px;
    padding: 0 24px;
    max-width: 320px;
    box-sizing: border-box;
}

/* Divisor "o ingresá con" */
.etca-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 16px 0 14px;
    color: #72777c;
    font-size: 13px;
}
.etca-divider::before,
.etca-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #dcdcde;
}
.etca-divider span {
    padding: 0 10px;
    white-space: nowrap;
}

/* Contenedor de botones */
.etca-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Botón base */
.etca-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 10px 16px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid transparent;
    transition: opacity 0.15s ease, box-shadow 0.15s ease;
    box-sizing: border-box;
    line-height: 1.4;
}
.etca-btn:hover {
    opacity: 0.92;
    box-shadow: 0 1px 4px rgba(0,0,0,0.15);
    text-decoration: none;
}
.etca-btn:focus {
    outline: 2px solid #2271b1;
    outline-offset: 2px;
}
.etca-btn svg {
    flex-shrink: 0;
}

/* Google */
.etca-btn-google {
    background: #fff;
    color: #3c4043;
    border-color: #dadce0;
}
.etca-btn-google:hover {
    background: #f8f9fa;
    color: #3c4043;
}

/* Facebook */
.etca-btn-facebook {
    background: #1877f2;
    color: #fff !important;
    border-color: #1877f2;
}
.etca-btn-facebook:hover {
    background: #166fe5;
    color: #fff !important;
}

/* Passkey */
.etca-btn-passkey {
    background: #1d2327;
    color: #fff;
    border-color: #1d2327;
}
.etca-btn-passkey:hover {
    background: #2c3338;
    color: #fff;
}
.etca-btn-passkey:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Status message */
#etca-passkey-status {
    margin-top: 10px;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 13px;
    text-align: center;
}
#etca-passkey-status.etca-success {
    background: #edfaef;
    color: #1a6b2a;
    border: 1px solid #8dbc97;
}
#etca-passkey-status.etca-error {
    background: #fcf0f1;
    color: #8a1f28;
    border: 1px solid #e6a4a8;
}
#etca-passkey-status.etca-loading {
    background: #f0f6fc;
    color: #2271b1;
    border: 1px solid #a8c4e0;
}
