body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    min-height: 100vh;
    background: #0a2818;
}

.main-container {
    display: flex;
    min-height: 100vh;
}

.left-section {
    flex: 2;
    position: relative;
    overflow: hidden;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.background-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.golden-line {
    position: absolute;
    right: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, #9b8b47, transparent);
}

.right-section {
    flex: 1;
    position: relative;
    padding: 20px;
    background: #0a2818;
}

.top-buttons {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
}

.proxy-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #9b8b47;
    color: #9b8b47;
    padding: 8px 20px;
    border-radius: 3px;
    cursor: pointer;
}

.login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
}

.logo {
    text-align: center;
    margin-bottom: 40px;
}

.logo h1 {
    color: #9b8b47;
    font-size: 108px;
    margin: 0;
    font-weight: bold;
}

.logo .divider {
    width: 80%;
    height: 2px;
    background: #9b8b47;
    margin: 15px auto;
}

.subtitle {
    color: #9b8b47;
    font-size: 14px;
    margin-top: 5px;
}

.input-group {
    margin-bottom: 15px;
}

label {
    display: block;
    color: #9b8b47;
    margin-bottom: 5px;
}

.login-input {
    width: 100%;
    padding: 10px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid #9b8b47;
    border-radius: 3px;
    color: #fff;
    box-sizing: border-box;
}

.login-button {
    width: 100%;
    padding: 10px;
    background: #7d4a9a;
    border: none;
    border-radius: 5px;
    color: #ffffff;
    font-size: 16px;
  
    cursor: pointer;
    margin-top: 20px;
}

.login-button:hover {
    background: #7d4a9a;
}

@media screen and (max-width: 768px) {
    .main-container {
        display: block;
    }
    
    .mobile-hide {
        display: none;
    }
    
    .right-section {
        width: 100%;
        height: 100vh;
        max-width: none;
    }
    
    .login-container {
        width: 90%;
        margin: 0 auto;
    }
} 