/* 登录页面专用样式 */

/* Vue路由视图容器样式 */
#app > div {
    min-height: 100vh;
    width: 100%;
}

/* 登录框样式 */
.v2board-auth-box {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
    animation: fadeIn 0.6s ease-out;
    width: 100%;
}

/* 背景样式 */
.v2board-background {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://bing-wallpaper.flashcat.online');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

/* 底部链接样式 */
.bg-gray-lighter {
    background-color: #f8f9fa;
    border-top: 1px solid #e0e0e0;
}

.text-left {
    text-align: left;
}

/* 登录页面底部链接样式 */
.v2board-login-i18n-btn {
    float: right;
    cursor: pointer;
}

/* 登录页面特定样式 */
.login-page .font-size-h1 img {
    height: 65px;
    width: auto;
}

.login-page .font-size-sm {
    color: #6c757d;
    margin-bottom: 1rem;
}

/* 响应式设计 */
@media (max-width: 576px) {
    .v2board-auth-box {
        padding: 10px;
    }
    .v2board-auth-box > div {
        max-width: 100% !important;
    }
}

@media (max-width: 768px) {
    .v2board-auth-box {
        padding: 15px;
    }
}
