/* TWF Social Login - Frontend Styles */

.twf-social-login-container {
    place-self: center;
    margin: 20px 0;
    max-width: 400px;
}

.twf-social-login-separator {
    text-align: center;
    margin: 20px 0;
    position: relative;
}

.twf-social-login-separator span {
    background: #fff;
    padding: 0 15px;
    color: #666;
    font-size: 14px;
    position: relative;
    z-index: 1;
}

.twf-social-login-separator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #ddd;
}

.twf-social-login-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.twf-social-login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border: 2px solid #ddd;
    border-radius: 6px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    background: #fff;
    color: #444;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.twf-social-login-btn:hover {
    border-color: #999;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.twf-social-login-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.twf-btn-icon {
    width: 22px;
    height: 22px;
    margin-right: 14px;
}

.twf-microsoft-btn {
    border-color: #2f2f2f;
}

.twf-microsoft-btn:hover {
    background: #2f2f2f;
    color: #fff;
    border-color: #2f2f2f;
}

.twf-google-btn {
    border-color: #4285f4;
}

.twf-google-btn:hover {
    background: #4285f4;
    color: #fff;
    border-color: #4285f4;
}

/* Responsive */
@media screen and (max-width: 600px) {
    .twf-social-login-container {
        max-width: 100%;
    }
    
    .twf-social-login-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .twf-btn-icon {
        width: 20px;
        height: 20px;
        margin-right: 12px;
    }
}
