/* Facebook Login Button Styles - The Iris Arcade */

/* ── Facebook wrapper ── */
.tiris-fb-login-wrapper {
    margin-bottom: 10px;
    display: block;
    visibility: visible;
    opacity: 1;
    position: relative;
    z-index: 1;
}

/* Ensure button is always visible */
.tiris-fb-btn,
.tiris-fb-btn:link,
.tiris-fb-btn:visited {
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 10 !important;
}

/* White background, border, black text — same style as Google button */
.tiris-fb-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 24px;
    background: #ffffff !important;
    border: 1px solid #dadce0 !important;
    border-radius: 4px;
    color: #3c4043 !important;
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none !important;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    box-sizing: border-box;
    min-height: 48px;
}

.tiris-fb-btn span {
    color: #3c4043 !important;
    font-weight: 500;
}

.tiris-fb-btn:hover {
    background: #f8f9fa !important;
    border-color: #d2d4d7 !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.tiris-fb-btn:active {
    background: #f1f3f4 !important;
}

/* Facebook icon — original blue circle with white f, no CSS filter */
.tiris-fb-icon {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    flex-shrink: 0;
}

/* Error messages */
.tiris-fb-error {
    background: #fce8e8;
    border: 1px solid #f5c6cb;
    color: #721c24;
    padding: 12px 16px;
    border-radius: 4px;
    margin-bottom: 16px;
    font-size: 14px;
}

/* Responsive */
@media screen and (max-width: 480px) {
    .tiris-fb-btn {
        padding: 14px 20px;
        font-size: 15px;
    }

    .tiris-fb-icon {
        width: 20px;
        height: 20px;
    }
}
