/*
 * 登录/注册/密码重置页面的样式
 * 伏草网络 - TikTok线路
 */

.auth-page {
    background-color: #f8f9fa;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.auth-container {
    width: 100%;
    max-width: 1000px;
}

.auth-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
}

.auth-image {
    background: linear-gradient(135deg, #4e73df 0%, #224abe 100%);
    position: relative;
    overflow: hidden;
}

.auth-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://cdn-icons-png.flaticon.com/512/6699/6699648.png');
    background-size: 200px;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.05;
}

.auth-form-container {
    background-color: #fff;
}

.form-control {
    border-radius: 8px;
    padding: 12px;
}

.form-control:focus {
    border-color: #4e73df;
    box-shadow: 0 0 0 0.2rem rgba(78, 115, 223, 0.25);
}

.toggle-password {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

@media (max-width: 991.98px) {
    .auth-container {
        max-width: 500px;
    }
}