* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body, html {
    height: 100%;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #121212;
    color: #ffffff;
}

.split-container {
    display: flex;
    min-height: 100vh;
    width: 100%;
}

.left-pane {
    flex: 1;
    background: radial-gradient(circle at center, #2a2a35 0%, #15151a 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px;
    position: relative;
}

.brand-content {
    max-width: 480px;
    text-align: center;
}

.logo-wrapper {
    margin-bottom: 20px;
}
.main-logo {
    width: 500px;
    height: auto;
    filter: drop-shadow(0 0 15px rgba(255, 255, 0, 0.4));
}

.brand-content h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
    color: #F8D648;
}

.brand-content .tagline {
    font-size: 16px;
    line-height: 1.6;
    color: #a0a0b0;
    margin-bottom: 50px;
}

.feature-list {
    list-style: none;
    text-align: left;
}

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    color: #d1d1d1;
    font-size: 15px;
}

.feature-list .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    margin-right: 15px;
    color: #7c4dff;
}
.feature-list .icon svg {
    width: 100%;
    height: 100%;
}

.right-pane {
    width: 100%;
    max-width: 550px;
    background-color: #0d0d0d;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 60px;
    border-left: 1px solid #222;
}

.login-wrapper {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.right-pane h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
}

.sub-header {
    color: #888;
    font-size: 14px;
    margin-bottom: 30px;
}

.btn-google {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: white;
    color: #333;
    font-weight: 500;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    margin-bottom: 25px;
    transition: background 0.2s;
}
.btn-google:hover {
    background-color: #f0f0f0;
}
.google-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin-bottom: 25px;
    color: #555;
    font-size: 13px;
}
.divider::before, .divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #333;
}
.divider span {
    padding: 0 10px;
}

.input-group {
    margin-bottom: 20px;
}
.input-group label {
    display: block;
    font-size: 13px;
    color: #888;
    margin-bottom: 8px;
}
.input-group input {
    width: 100%;
    padding: 12px 15px;
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 6px;
    color: white;
    font-size: 15px;
    outline: none;
    transition: border 0.3s;
}
.input-group input:focus {
    border-color: #2ea043;
}

.btn-submit {
    width: 100%;
    padding: 12px;
    background-color: #2ea043;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.2s;
}
.btn-submit:hover {
    background-color: #2c974b;
}

.footer-actions {
    text-align: center;
    margin-top: 20px;
}
.skip-link {
    color: #888;
    font-size: 13px;
    text-decoration: none;
}
.skip-link:hover {
    color: white;
}

.legal-footer {
    margin-top: 40px;
    font-size: 11px;
    color: #555;
    line-height: 1.5;
}
.legal-footer a {
    color: #444eff;
    text-decoration: none;
}

.error-box p {
    color: #ff4d4d;
    font-size: 13px;
    margin-bottom: 10px;
}

@media (max-width: 900px) {
    .split-container {
        flex-direction: column;
    }
    .left-pane {
        padding: 40px 20px;
        min-height: auto;
    }
    .right-pane {
        max-width: 100%;
        padding: 40px 20px;
    }
}