/* 自定义OAuth2登录插件 - 前端通用样式 */

/* 登录按钮样式 */
.bs_oauth2-login-btn {
    display: inline-block;
    padding: 0 20px;
    height: 40px;
    line-height: 40px;
    border-radius: 4px;
    background-color: #409eff;
    color: white;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    font-size: 14px;
}

.bs_oauth2-login-btn:hover {
    background-color: #66b1ff;
    color: white;
    text-decoration: none;
}

.bs_oauth2-login-btn:active {
    background-color: #3a8ee6;
}

/* 登录区域样式 */
.bs_oauth2-login-area {
    text-align: center;
    margin: 20px 0;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 5px;
}

.bs_oauth2-login-area h3 {
    margin-bottom: 20px;
    color: #333;
}

/* 登录按钮组样式 */
.bs_oauth2-login-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .bs_oauth2-login-buttons {
        flex-direction: column;
    }
    
    .bs_oauth2-login-btn {
        width: 100%;
        max-width: 300px;
    }
}

/* 登录成功提示 */
.bs_oauth2-login-success {
    padding: 15px;
    background-color: #f0f9ff;
    border-left: 4px solid #52c41a;
    margin: 20px 0;
    border-radius: 4px;
}

/* 登录失败提示 */
.bs_oauth2-login-error {
    padding: 15px;
    background-color: #fff1f0;
    border-left: 4px solid #f5222d;
    margin: 20px 0;
    border-radius: 4px;
}