body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    margin: 0;
    height: 100vh;
    overflow: hidden;
}

.split-container {
    display: flex;
    height: 100vh;
}

.login-panel {
    flex: 0 0 450px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
}

.background-image {
    flex: 1;
    background-image: url('/static/background.webp');
    background-size: cover;
    background-position: center;
}

.container {
    padding: 2rem 3rem;
    text-align: center;
    max-width: 400px;
    width: 100%;
}

h1 {
    font-size: 1.75rem;
    color: #1c1e21;
    margin-bottom: 1rem;
}

p {
    color: #606770;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn {
    background-color: #1877f2;
    color: #fff;
    text-decoration: none;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    font-weight: bold;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn:hover {
    background-color: #166fe5;
}

.btn-secondary {
    background-color: #42b72a;
}

.btn-secondary:hover {
    background-color: #36a420;
}

hr {
    border: none;
    border-top: 1px solid #ddd;
    margin: 1.5rem 0;
}

.btn-github {
    background-color: #24292e;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.btn-github:hover {
    background-color: #333;
}

.btn-github svg {
    fill: #fff;
}

/* Form Styles */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group input {
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
}

.sub-text {
    font-size: 0.9rem;
    color: #606770;
}

.sub-text a {
    color: #1877f2;
    text-decoration: none;
}

.sub-text a:hover {
    text-decoration: underline;
}
