:root {
    --primary: #4F46E5;
    --secondary: #10B981;
    --accent: #0d6efd;
    --dark: #1F2937;
    --gray: #6B7280;
    --border: #E5E7EB;
}
.main-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content-wrapper, .line {
    display: flex;
    max-width: 1000px;
    width: 100%;
    position: relative;
}

.line::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 40px;
    bottom: 40px;
    width: 1px;
    background: linear-gradient(to bottom,
    transparent,
    var(--border),
    transparent);
}

.section {
    padding: 60px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.section:first-child {
    justify-content: center;
    padding-top: 80px;
    padding-bottom: 80px;
}

.section-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--dark);
}


.section-description {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 32px;
    line-height: 1.5;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    font-size: 0.9rem;
    font-weight: bold;
    color: var(--dark);
    display: block;
    margin-bottom: 5px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 14px;
    background-color: white;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(79, 70, 229, 0.1);
}

select.form-control {
    width: 100%;
    font-size: 1rem;
    padding: 12px 16px;
    line-height: 1.5;
    background: #fff url("data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23000' d='M2 0L0 2h4zM2 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right 0.75rem center;
    background-size: 8px 10px;
    border: 1px solid var(--border);
    border-radius: 8px;
}

.btn-login {
    display: block;
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

.btn-login-primary {
    background-color: var(--primary);
    color: white;
}

.btn-login-primary:hover {
    background-color: #4338CA;
}

.btn-login-secondary {
    background-color: var(--secondary);
    color: white;
}

.btn-login-secondary:hover {
    background-color: #0D9488;
}

.btn-login-tertiary {
    background-color: white;
    color: var(--accent);
    border: 1px solid var(--accent);
}

.btn-login-tertiary:hover {
    background-color: #E7F1FF;
    color: var(--primary);
}

.login-divider  {
    display: flex;
    align-items: center;
    margin: 20px 0;
    color: var(--gray);
    font-size: 14px;
}

.login-divider ::before, .login-divider::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid var(--border);
}

.login-divider::before {
    margin-right: 12px;
}

.login-divider::after {
    margin-left: 12px;
}

.forgot-password {
    text-align: center;
    margin-top: 24px;
}

.forgot-password a {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.2s;
}

.forgot-password a:hover {
    background-color: #E7F1FF;
    text-decoration: underline;
}

.footer {
    margin-top: 40px;
    font-size: 12px;
    color: var(--gray);
    text-align: center;
}

.footer a {
    color: var(--primary);
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
    }

    .content-wrapper::before {
        display: none;
    }

    .section {
        padding: 40px;
    }

    .section:first-child {
        padding-top: 60px;
        padding-bottom: 60px;
        border-bottom: 1px solid var(--border);
    }
}