﻿html, body {
    margin: 0;
    padding: 0;
    height: 100vh;
    font-family: Arial, sans-serif;
}

.split-container {
    display: flex;
    height: 100vh;
}

.left-side {
    flex: 1;
    position: relative;
    background: url('/assets/images/bgImage.png') center/cover no-repeat;
    filter: brightness(0.7);
}

.right-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    padding: 40px;
}

.login-box {
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.vip-badge {
    width: 100px;
    margin-bottom: 20px;
}

.login-title {
    font-size: 22px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.login-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
}

.form-control {
    height: 50px;
    border-radius: 5px;
    border: 1px solid #ddd;
    padding: 10px 15px;
    margin-bottom: 15px;
    font-size: 16px;
}

.login-btn {
    width: 100%;
    height: 50px;
    background-color: #FFD700;
    border: none;
    color: #333;
    font-weight: bold;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

    .login-btn:hover {
        background-color: #FFC800;
    }
