/* Auth View Styles */
.bjj-auth-page-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.bjj-auth-container {
    max-width: 400px;
    width: 100%;
    padding: 30px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.auth-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.bjj-auth-container h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 800;
    color: #111;
}

.bjj-auth-container p {
    color: #666;
    margin-top: 5px;
    margin-bottom: 30px;
}

/* Google Button */
.bjj-btn-google {
    width: 100%;
    padding: 12px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.2s;
}

.bjj-btn-google:hover {
    background: #f9f9f9;
    border-color: #ccc;
}

.google-icon {
    font-weight: 900;
    color: #4285F4;
}

.auth-divider {
    margin: 20px 0;
    position: relative;
    text-align: center;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #eee;
}

.auth-divider span {
    background: #fff;
    padding: 0 10px;
    position: relative;
    color: #888;
    font-size: 12px;
    font-weight: 600;
}

/* Login Form */
.login-remember {
    text-align: left;
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
}

.auth-footer {
    margin-top: 25px;
    font-size: 13px;
    color: #888;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.auth-footer a {
    color: #111;
    text-decoration: none;
    font-weight: 600;
}

.auth-separator {
    color: #ddd;
    font-weight: 400;
}

/* Google Login Wrapper - Center the button */
.google-login-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.google-login-wrapper>div {
    width: 100%;
    max-width: 400px;
}